mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
8 lines
135 B
PHP
8 lines
135 B
PHP
<?php
|
|||
function read_and_close($path) {
|
|||
$fh = fopen($path, 'r');
|
|||
$data = fread($fh, 1024);
|
|||
fclose($fh);
|
|||
return $data;
|
|||
}
|