php的strict的简单介绍

  • 1、如何关闭php的notice和warning问题
  • 2、php从5.2升到5.5出现这个怎么办PHP Strict Standards: Only variables should be passed by reference in
  • 3、如何看待PHP Strict Standards错误
  • 4、PHP报警Strict Standards如何取消?
  • 5、我安装ECMall后报PHP Strict Standards错误,请问如何解决
  • 6、php的网页,提示Strict Standards错误,求解决

1、在php.ini文件中改动error_reporting改为:error_reporting=E_ALL ~E_NOTICE

2、如果你不能操作php.ini文件,你可以使用如下方法

在你想禁止notice错误提示的页面中加入如下代码:

error_reporting(255);

是列出所有提示

error_reporting(0);

是不显示所有提示

建议使用

error_reporting(7);

只显示严重错误

1 E_ERROR 致命的运行时错误

2 E_WARNING 运行时警告(非致命性错误)

4 E_PARSE 编译时解析错误

8 E_NOTICE 运行时提醒(经常是bug,也可能是有意的)

16 E_CORE_ERROR PHP启动时初始化过程中的致命错误

32 E_CORE_WARNING PHP启动时初始化过程中的警告(非致命性错)

64 E_COMPILE_ERROR 编译时致命性错

128 E_COMPILE_WARNING 编译时警告(非致命性错)

256 E_USER_ERROR 用户自定义的致命错误

512 E_USER_WARNING 用户自定义的警告(非致命性错误)

1024 E_USER_NOTICE 用户自定义的提醒(经常是bug,也可能是有意的)

2048 E_STRICT 编码标准化警告(建议如何修改以向前兼容)

4096 E_RECOVERABLE_ERROR 接近致命的运行时错误,若未被捕获则视同E_ERROR

6143 E_ALL 除E_STRICT外的所有错误(PHP6中为8191,即包含所

PHP 5.3以后(包括)这个内置函数的值是引用操作的,引用传递的参数要求必须是具体的变量,而不能通过函数返回值传递。

原代码:

$testArr = [

    0 = ‘a’,

    1 = ‘b’,

    2 = ‘c’,

    3 = ‘d’];

reset(array_flip($testArr));

新代码:

?php

$testArr = array(

    0 = ‘a’,

    1 = ‘b’,

    2 = ‘c’,

    3 = ‘d’);

$newTestArr = array_flip($testArr);

reset($newTestArr);

?

所以你需要检查$filed的数组定义是否有问题。

错误的描述大概如下

Strict Standards: Redefining already defined constructor for class Object in D:\www\hosts\cake\ucake-libs\cake\libs\object.php on line 69

Strict Standards: Assigning the return value of new by reference is deprecated in D:\www\hosts\cake\ucake-libs\cake\libs\object.php on line 94

Strict Standards: Assigning the return value of new by reference is deprecated in D:\www\hosts\cake\ucake-libs\cake\libs\security.php on line 48

Strict Standards: Assigning the return value of new by reference is deprecated in D:\www\hosts\cake\ucake-libs\cake\libs\inflector.php on line 65

Strict Standards: Assigning the return value of new by reference is deprecated in D:\www\hosts\cake\ucake-libs\cake\libs\configure.php on line 89

Strict Standards: Non-static method Configure::getInstance() should not be called statically in D:\www\hosts\cake\ucake-libs\cake\bootstrap.php on line 43

Strict Standards: Non-static method Configure::write() should not be called statically in D:\www\hosts\cake\ucake-libs\cake\bootstrap.php on line 82

Strict Standards: Non-static method Configure::getInstance() should not be called statically in D:\www\hosts\cake\ucake-libs\cake\libs\configure.php on line 108

大概扫了几眼,看到基本上是CakePHP框架的错误,在Google中搜索相关错误信息时发现其它框架也存在这种通病,无耐。。。

只好认真看了看错误的解释,我理解的是:程序没有按照PHP严格规定的模式编写而给的警告。想到这点于是自己又测试了几个以前写的小程序,有的也会出现这个错误。看来以后自己得注意自己的编码规范,不能一味的追求功能…

由于当前项目要进行调试,遂又将php.ini错误输出重新定义为:error_reporting = E_ALL。将E_STRICT去掉了,重启Apache…一切如常…

这个问题产生是因为引用传递参数引起的。

解决办法:

修改代码不使用引用传递。

修改php配置文件,修改error_reporting 其值改为error_reporting = E_ALL ~E_NOTICE,或者修改函数中的引用方式。

解决办法:

打开cls_template.php文件中发现下面这段代码:

1 $tag_sel = array_shift(explode(‘ ‘, $tag));

忘记说了,我的PHP版本是5.4.19,PHP5.3以上默认只能传递具体的变量,而不能通过函数返回值传递,所以这段代码中的explode就得移出来重新赋值了

1 $tagArr = explode(‘ ‘, $tag);

2 $tag_sel = array_shift($tagArr);

这样之后顶部的报错没掉了,左侧和底部的报错还需要去ecshop的后台点击清除缓存才能去除。

下面我们遇到这段代码,在php5.3以上版本,也会报错误。

1 $file_suffix = strtolower(array_pop(explode(‘.’, $file_name)));

修改方法:

1 $fnarray=explode(‘.’, $file_name);

2 $file_suffix = strtolower(array_pop($fnarray));

以后传参需要单独写好,不能一行写完了。修改配置文件时,最好是复制一行,注掉,然后再改,如果需要随时切回。

当你的网站出现

Strict Standards: Non-static method ECMall::startup() should not be called statically in /htdocs/ecmall/index.php on line 22

Deprecated: Assigning the return value of new by reference is deprecated in /htdocs/ecmall/eccore/controller/app.base.php on line141

Deprecated: Assigning the return value of new by reference is deprecated in /htdocs/ecmall/includes/ecapp.base.php on line 137

Strict Standards: Declaration of FrontendApp::jslang() should be compatible with ECBaseApp::jslang($lang) in /htdocs/ecmall/app/frontend.base.php on line 363

Strict Standards: Declaration of Message::display() should be compatible with BaseApp::display($n) in /htdocs/ecmall/eccore/controller/message.base.php on line 329

等类似错误提示的时候(PHP5.2.*版本的同样有这情况),可以考虑我们下面给出的解决方法:

1)问题分析:该错误是PHP环境配置的问题,并非程序问题;

2)找到php.ini 文件,将 error_reporting 的值改为:error_reporting = E_ALL ~E_NOTICE

3)重启Apache或者IIS。

4)完毕

提示的意思是:构造方法重复了。

function sms()是兼容php 4.x的语法。php5.x之后引入了__construct

现在php4.x基本已经全被换代升级了,php5.3.3版之后将不认function sms()为构造方法。

这里代码中可以删掉整个function sms(){}

原创文章,作者:WWEHT,如若转载,请注明出处:https://www.506064.com/n/127095.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
WWEHT的头像WWEHT
上一篇 2024-10-03 23:13
下一篇 2024-10-03 23:13

相关推荐

发表回复

登录后才能评论