php提示Call-time pass-by-reference has been deprecated in的解决方法[已测]
作者:bea
Warning: Call-time pass-by-reference has been deprecated in E:Program FilesEasyPHP 3.0wwwugfreeIncludeClassXmlParse.class.php on line 46 Warning: Call-time pass-by-reference has been deprecated in E:Program FilesEasyPHP 3.0wwwugfreeInclud
Warning: Call-time pass-by-reference has been deprecated in E:Program FilesEasyPHP 3.0wwwugfreeIncludeClassXmlParse.class.php on line 46 Warning: Call-time pass-by-reference has been deprecated in E:Program FilesEasyPHP 3.0wwwugfreeIncludeClassXmlParse.class.php on line 47 Warning: Call-time pass-by-reference has been deprecated in E:Program FilesEasyPHP 3.0wwwugfreeIncludeClassXmlParse.class.php on line 47 Warning: Call-time pass-by-reference has been deprecated in E:Program FilesEasyPHP 3.0wwwugfreeIncludeClassXmlParse.class.php on line 48 Warning: Call-time pass-by-reference has been deprecated in E:Program FilesEasyPHP 3.0wwwugfreeIncludeClassXmlParse.class.php on line 49 Warning: Call-time pass-by-reference has been deprecated in E:Program FilesEasyPHP 3.0wwwugfreeIncludeClassXmlParse.class.php on line 51 Warning: Call-time pass-by-reference has been deprecated in E:Program FilesEasyPHP 3.0wwwugfreeIncludeClassXmlParse.class.php on line 56 Warning: Call-time pass-by-reference has been deprecated in E:Program FilesEasyPHP 3.0wwwugfreeIncludeClassXmlParse.class.php on line 56 解决办法如下:修改conf_files目录下php.ini中allow_call_time_pass_reference = On即可。 如果你找不到php.ini的位置 好了 绝招来了 在根文件夹下建一个 phpinfo.php 文件 在里面输入如下代码
代码如下:
<?php
phpinfo();
?>
php.ini位置,iis+php一般位于 c:windowsphp.ini
而apache+php一般是 php-apache2handler.ini
有用 | 无用
代码如下:
<?php
phpinfo();
?>
php.ini位置,iis+php一般位于 c:windowsphp.ini
而apache+php一般是 php-apache2handler.ini
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- php提示undefined index的几种解决方法
- openflashchart 2.0 简单案例php版
- PHP中去掉字符串首尾空格的方法
- 有关PHP中MVC的开发经验分享
- php的array_multisort()使用方法介绍
- 一个显示某段时间内每个月的方法 返回由这些月份组成的数组
- php array的学习笔记
- php文件操作实例代码
- PHP图片验证码制作实现分享(全)
- php array的学习笔记
- php 中的4种标记风格介绍
- php中常用的预定义变量小结
- web目录下不应该存在多余的程序(安全考虑)
- PHP 杂谈《重构-改善既有代码的设计》之五 简化函数调用
- PHP中数组的三种排序方法分享
- php错误、异常处理机制(补充)
- PHP中的错误处理、异常处理机制分析
- PHP面向对象的进阶学习(抽像类、接口、final、类常量)
- PHP file_exists问题杂谈