我正在使用 phpDesigner8 并且有一个简单的 PHP 脚本:
<?php
/*
Trying to debug error
*/
echo 'this is a test';
?>
当我“运行”它时,它运行良好。如果我从命令行运行它,它会完美运行。但是,当我“调试”它时,我立即感到恐惧:
致命错误 超过 0 秒的最大执行时间。
我已阅读其他帖子并在 php.ini 中设置了 max_execution_time = 300 和 max_input_time = 5000。
帮助?