当前位置: 代码迷 >> 综合 >> PHP Deprecated: Comments starting with '#' are deprecated in *.ini 警告解决办法
  详细解决方案

PHP Deprecated: Comments starting with '#' are deprecated in *.ini 警告解决办法

热度:34   发布时间:2023-12-07 02:12:36.0

新装的ubuntu 10.04系统,使用新立得装的PHP,但是每次我在命令行下执行php脚本时都会出如下的警告信息:

PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/cli/conf.d/mcrypt.ini on line 1 in Unknown on line 0

上网查了一下,原来是新版本的PHP不赞成用'#'号作为注释符号,需要用分号';'。打开这个文件,把里面的#替换成;号,问题解决!

  相关解决方案