How to solve the use of deprecated function ereg() of PHP 5.3.0 in Drupal 6.13(如何解决在 Drupal 6.13 中使用 PHP 5.3.0 的 deprecated 函数 ereg())
问题描述
有人知道如何解决下面的错误吗?
Anyone knows how to solve the error below?
已弃用:函数 ereg() 在 C:wampwwwincludesfile.inc 中的第 895 行已弃用
Deprecated: Function ereg() is deprecated in C:wampwwwincludesfile.inc on line 895
在 wamp server 2.0i 和 PHP 5.3.0 上安装 Drupal 6.13 后发生这种情况
It is happening after installing Drupal 6.13 on wamp server 2.0i with PHP 5.3.0
推荐答案
降低错误报告级别 低于 E_DEPRECATED.
PHP 5.3 引入了两个新的错误报告级别,E_DEPRECATED 和 E_USER_DEPRECATED,并且 - 在 PHP 的历史上第一次 - 他们已经开始放弃其 API 的旧部分.ereg_* 函数仍然可以工作,但此警告旨在让您知道嘿,这些函数将很快消失,可能在下一个主要修订版中).
PHP 5.3 introduced two new error reporting levels, E_DEPRECATED and E_USER_DEPRECATED and - for the first time in PHP's history - they've started to walk away from older parts of their API. The ereg_* function will still work, but this warning is intended to let you know that "hey, these function will be going away soon, probably in the next major revision).
这篇关于如何解决在 Drupal 6.13 中使用 PHP 5.3.0 的 deprecated 函数 ereg()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何解决在 Drupal 6.13 中使用 PHP 5.3.0 的 deprecated 函数 ereg()
- PHP - if 语句中的倒序 2021-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01