2010-09-02 84 views

回答

0

看看PHP的system()函數。

echo system('gcc file.c'); 
1

你可以啓動編譯命令system功能:

$output = system("gcc -Wall -c yourtmpfile.c"); 

outtmpfile.c是你需要創建一個臨時文件。

$output中,您將獲得編譯命令的輸出。