duanqu9292 2015-12-01 11:10
浏览 54
已采纳

如果我从bat文件执行php脚本,邮件功能不起作用

Here, is my php script :

enter image description here

my php.ini:

enter image description here

if I execute the script using a browser, it works fine :

enter image description here

but if I execute the script using a bat file, it doesn't work. enter image description here

here, is my bat file: enter image description here

  • 写回答

1条回答 默认 最新

  • dongzouhe9734 2015-12-01 11:30
    关注

    It seems like php is not reading the php.ini.

    Run the command php --ini and see if the Loaded Configuration File: is the correct one.

    You can tell php where to find the right php.ini by adding the option -c:

    php -c C:\php\php.ini -f C:\wamp\...\mail.php
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?