mirror of
https://github.com/pmmp/PHP-Binaries.git
synced 2025-03-01 02:21:12 +00:00
9 lines
147 B
Bash
9 lines
147 B
Bash
#!/bin/bash
|
|
|
|
OUTPUT=$(readelf -d "$PHP_BINARIES/bin/php")
|
|
|
|
if [ "$OUTPUT" != "There is no dynamic section in this file." ]; then
|
|
exit 1
|
|
fi
|
|
|
|
exit 0 |