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!
|
feedback
|
|
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 | |||
|
feedback
|
You can probably write something way more efficient, but this gets the job done. | |||||||
feedback
|
|
Here's a tested function that uses fgets, adapted from Drupal Libraries API module:
| ||||
|
feedback
|