我有这个:
<?php
if ($_GET['run']) {
# This code will run if ?run=true is set.
exec("./check_sample.sh");
}
?
<!-- This link will add ?run=true to your URL, myfilename.php?run=true -->
<button type="button" onclick="?run=true">Click Me!</button>
shell 脚本 check_sample.sh 有一些使用 printf/echo 打印的 o/p 当我单击“Click Me”时,我看不到那些 o/p。还有关于如何使其接受文本输入并将其作为 $1 arg 传递的任何指针。脚本也会有所帮助