mirror of
https://github.com/danog/process.git
synced 2025-01-05 20:28:15 +01:00
11 lines
104 B
PHP
11 lines
104 B
PHP
<?php
|
|
|
|
$content = fread(STDIN, 1024);
|
|
|
|
if ($content === "exit") {
|
|
echo "ok";
|
|
exit;
|
|
}
|
|
|
|
exit(1);
|