dongsheng66783619 2014-03-22 13:35
浏览 62
已采纳

从Windows命令行CMD解雇php脚本

I feel like I'm missing something here. php is set up in my system variable PATH. I'm trying to execute a php script from the Window command line, here is my script:

<?php
$file = "test_log.txt";
$content = date("Y-m-d H:i:s") . " - Action logged. 
";
file_put_contents($file, $content, FILE_APPEND);

echo "That worked. I think.";
?>

When called from my browser it works perfectly. A log file is appended with the latest action. However when called from the command line I get the echo, but nothing else happens, no appendment of the log file. See below:

enter image description here

Any ideas?

  • 写回答

1条回答 默认 最新

  • dongliao3450 2014-03-22 13:40
    关注

    This should do it:

    file_put_contents(__DIR__.'/'.$file, $content, FILE_APPEND);
    

    Reason: Your webserver has a different $_SERVER['DOCUMENT_ROOT'] (and current work directory) than the Command Line Interpreter.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

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

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

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

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

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

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

客服 返回
顶部