我有一个非常小的代码段here。我试图在我的网站上使用此代码(最好是在JavaScript中)。 到目前为止我尝试的是:
我的PHP脚本源代码:
<?php
error_reporting(E_ALL);
$descriptorspec = array(
0 => array("pipe", "r"), // stdin is a pipe that the child will read from
1 => array("pipe", "w"), // stdout is a pipe that the child will write to
2 => array("pipe", "w") // stderr is a file to write to
);
$cwd = '/tmp';
$env = array('PHP_SBX' => '1');
$process = proc_open('/var/www/html/gsqas', $descriptorspec, $pipes, $cwd, $env);
if (is_resource($process)) {
fwrite($pipes[0],htmlspecialchars($_POST["asmcode"]));
fclose($pipes[0]);
echo stream_get_contents($pipes[1]);
fclose($pipes[1]);
echo stream_get_contents($pipes[2]);
fclose($pipes[2]);
proc_close($process);
}
?>
我不知道该使用什么以及如何使用我选择的东西来使用我网站上链接的代码片段。 这似乎是一个愚蠢的问题,但我很长时间都在苦苦挣扎。