Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将使用 shell_exec 在 php 中启动一个 .sh 文件。
$out = array(); exec("/home/user/html/run.sh 2>&1", $out); print_r($out);
在这个 .sh 文件中有一个程序会在硬盘上生成一个输出文件。
因为我得到了这个错误。
run.sh:第 1 行:59934 分段错误(核心转储)
这是什么意思?