PHP通过eclipse调试
我有一个从 xampp 中的根目录(//htdocs)开始的脚本。脚本的文件名是 y index.php,php 文件中存在一些问题,即
if(file_exists('includes/dboperations.php')). If I run this script, its ok I will get following error
Call Stack
# Time Memory Function Location
1 0.0045 400376 {main}( ) ..\index.php:0
2 0.0304 455088 require_once( 'C:\xampp\htdocs\includes\library.inc.php' ) ..\index.php:45
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 80
Call Stack
此错误表明什么?
I have a script that starts from root directory(//htdocs) in xampp. The filename of script is y index.php, there is some issue in php file and that is
if(file_exists('includes/dboperations.php')). If I run this script, its ok I will get following error
Call Stack
# Time Memory Function Location
1 0.0045 400376 {main}( ) ..\index.php:0
2 0.0304 455088 require_once( 'C:\xampp\htdocs\includes\library.inc.php' ) ..\index.php:45
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 80
Call Stack
What does this error indicates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从第 80 行的
C:\xampp\php\PEAR\Config.php 中删除
&
通过引用返回 new 值
已弃用php 5.3remove the
&
fromC:\xampp\php\PEAR\Config.php on line 80
return value of new by reference
is deprecated in php 5.3