PHP通过eclipse调试

发布于 2024-11-07 20:58:27 字数 532 浏览 0 评论 0原文

我有一个从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我是男神闪亮亮 2024-11-14 20:58:27

从第 80 行的 C:\xampp\php\PEAR\Config.php 中删除 &

通过引用返回 new 值 已弃用php 5.3

remove the & from C:\xampp\php\PEAR\Config.php on line 80

return value of new by reference is deprecated in php 5.3

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文