mirror of
https://github.com/pmmp/PHP-Binaries.git
synced 2025-04-05 23:24:29 +00:00
9 lines
101 B
Bash
9 lines
101 B
Bash
#!/bin/bash
|
|
|
|
OUTPUT=$("$PHP_BINARIES" -r 'echo 1;')
|
|
|
|
if [ "$OUTPUT" != "1" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
exit 0 |