1、第一可以在火狐浏览器上调试
2、第二个就是把返回值写入文件中:如下:将他的返回数据写到文件中 $data = "abcdef"; $dir = "./statics/txt/"; if (is_dir($dir)) { if ($dh = opendir($dir)) { while (($file = readdir($dh)) !== false) { $of = fopen('abc.txt','w'); if($of){ fwrite($of,$data);//把执行文件的结果写入txt文件 } } } closedir($dh); }