有没有办法(php函数)从文件中获取1.0.0.0版本?
/**
* @author softplaxa
* @copyright 2011 Company
* @version 1.0.0.0
*/
提前感谢!
答案 0 :(得分:1)
不,没有本机php函数会从文件中提取您列出的1.0.0.0版本。但是,你可以写一个:
一个。你可以逐行解析文件并使用preg_match()
B中。你可以用grep作为系统调用
答案 1 :(得分:0)
$string = file_get_contents("/the/php/file.php");
preg_match("/\*\s+@version\s+([0-9.]+)/mis", $matches, $string);
var_dump($matches[1]);
你可以写一些更高效的方法,但这可以完成工作。
答案 2 :(得分:0)
这是一个使用fgets的测试函数,改编自Drupal Libraries API module:
/**
* Returns param version of a file, or false if no version detected.
* @param $path
* The path of the file to check.
* @param $pattern
* A string containing a regular expression (PCRE) to match the
* file version. For example: '@version\s+([0-9a-zA-Z\.-]+)@'.
*/
function timeago_get_version($path, $pattern = '@version\s+([0-9a-zA-Z\.-]+)@') {
$version = false;
$file = fopen($path, 'r');
if ($file) {
while ($line = fgets($file)) {
if (preg_match($pattern, $line, $matches)) {
$version = $matches[1];
break;
}
}
fclose($file);
}
return $version;
}