dongya1875 2016-03-16 07:49
浏览 73
已采纳

为什么我的PHP不运行与cmd中指定的命令相同的命令?

I'm using a windows machine. When I run this command in cmd it works fine.

C:\wamp\www\upload\cprogram.exe > output.txt

But when I write the same command in my php it shows

"> not recognised as an internal or external command"

My php code :

$exepath="C:\wamp\www\upload\cprogram.exe";

$outputpath="C:\wamp\www\upload\output.txt";
exec("$exepath > $outputpath");

Please tell me how can i send my executed C program output a file?

  • 写回答

1条回答 默认 最新

  • doushan5222 2016-03-16 08:02
    关注

    Please tell me how can i send my executed C program output a file?

    There are many ways that you can write the output of your command to a file using php.

    In your example it doesnt work due to the use of concatenation. This should work better:

    exec($exepath.' > '.$outputpath);
    

    Another option would be to use the shell_exec command instead:

    $exepath="C:\wamp\www\upload\cprogram.exe";
    $outputpath="C:\wamp\www\upload\output.txt";
    shell_exec ($exepath ." > ". $outputpath);
    

    Or just use the system command and write the output to a file yourself:

    $exepath="C:\wamp\www\upload\cprogram.exe";
    $outputpath="C:\wamp\www\upload\output.txt";
    system($exepath, $return);
    $fp = fopen($outputpath, 'w');
    fwrite($fp, $return);
    fclose($fp);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部