mirror of
https://github.com/LDAPAccountManager/lam.git
synced 2025-10-03 01:39:33 +02:00
8 lines
125 B
PHP
Executable file
8 lines
125 B
PHP
Executable file
#!/usr/bin/php
|
|
<?php
|
|
$file = fopen("lam/VERSION", "r");
|
|
$line = fgets($file, 100);
|
|
$line = trim($line);
|
|
echo $line;
|
|
exit;
|
|
?>
|