|
楼主 |
发表于 2005-2-23 10:23:22
|
显示全部楼层
PHP求助
gcc.php的内容如下:
<?php
$cmd="gcc -o /tmp/out /tmp/out.c";
system($cmd);
system("/tmp/out");
?>
/tmp下out.c内容如下:
#include <stdio.h>
main()
{
printf("you are successful\n")
}
如果在终端用 gcc -o /tmp/out /tmp/out.c
会有输出如下
out.c: In function `main':
out.c:5: error: syntax error before '}' token
但在浏览器下调用gcc.php时却得不到如上的输出,我想在浏览器下调用gcc.php时得到编译输出,请问该怎么做?
QQ:158496001 |
|