9 lines
203 B
Bash
9 lines
203 B
Bash
#!/bin/bash
|
|
|
|
# https://stackoverflow.com/a/1482133
|
|
SCRIPT_DIR="$(dirname -- "$(readlink -f -- "$0";)";)"
|
|
cd "${SCRIPT_DIR}"
|
|
|
|
export PHP_CLI_SERVER_WORKERS=4
|
|
php -S 0.0.0.0:$1 index.php --enable-mbstring
|