标签: php terminal server shell-exec
当我尝试运行shell_exec("php -S localhost:8000")时,它会运行服务器,但会冻结终端。
shell_exec("php -S localhost:8000")
我尝试运行$result = shell_exec('php -S localhost:8000 -t public/ &> /dev/null 2>&1'),但它不会将输出存储到变量中。
$result = shell_exec('php -S localhost:8000 -t public/ &> /dev/null 2>&1')
我的想法是,一旦服务器成功启动,我就可以自定义输出消息。