LDAPAccountManager/lam-packaging/getVersion

9 lignes
125 B
PHP
Fichiers exécutables

#!/usr/bin/php
<?php
$file = fopen("lam/VERSION", "r");
$line = fgets($file, 100);
$line = trim($line);
echo $line;
exit;
?>