如何读取文件的 php param 版本?
有没有办法(php函数)从文件中获取版本1.0.0.0?
/**
* @author softplaxa
* @copyright 2011 Company
* @version 1.0.0.0
*/
提前致谢!
is there a way (a php function) to get the version 1.0.0.0 from a file?
/**
* @author softplaxa
* @copyright 2011 Company
* @version 1.0.0.0
*/
thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不,没有本地 php 函数可以从文件中提取您列出的版本 1.0.0.0。但是,您可以编写一个:
A. 您可以逐行解析文件并使用 preg_match()
B. 您可以使用 grep 作为系统调用
No, there is not a native php function that will extract the version 1.0.0.0 you listed, from a file. However, you can write one:
A. you can parse the file line by line and use preg_match()
B. you can used grep as a system call
您可能可以编写更有效的方法,但这可以完成工作。
You can probably write something way more efficient, but this gets the job done.
下面是一个使用 fgets 的经过测试的函数,改编自 Drupal Libraries API 模块:
Here's a tested function that uses fgets, adapted from Drupal Libraries API module: