![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.php archiveRe: Get a file's version in PHP
From: Janwillem Borleffs <jw@jwscripts.com>
Date: Sun Oct 30 2005 - 14:15:01 CET
Marius III wrote:
Since you are mentioning EXE files, I assume that you need this for a
Here, you can use the COM extension (http://www.php.net/com) as follows:
<?php
//create FSO instance
$version = $fso->GetFileVersion(realpath('some.exe'));
?>
JW
|