博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php的错误级别
阅读量:6681 次
发布时间:2019-06-25

本文共 1368 字,大约阅读时间需要 4 分钟。

error_reporting

--------------------------------------------------------------------------------
----Sets which PHP errors are reported
设置PHP错误报告

The error_reporting() function sets the error_reporting directory at runtime.PHP has many levels of errors,using this function sets that level for the duration(runtime) of your script.If the optional level7 is not set,error_reporting() will just return the current reporting level.

error_reporting() 函数在运行的时候设置error_reporting目录.

PHP有很多的错误,使用此功能设置你的script.如果你选购的水平是没有设置的持续时间(运行时),打开error_reporting() 方法会返回当前的错误报告级别.

E_CORE_ERROR(integer)

在PHP初始化启动过程中发生的启动致命错误.该错误类似E_ERROR,但是由PHP引擎核心产生.

E_CORE_WANING

PHP初始化启动过程中发生的警告(非致命错误).该错误类似E_WARNING,但是是由PHP引擎核心产生的.

ini_set(PHP4, PHP5)
ini_set -- Sets the value of a configuration option
设置一个配置选项的值

string ini_set ( string $arname, string $newvalue )

Sets the value of the given configuration option.The configureaiton option will keep this new value during the script's exception, and will be restored at the script's ending .

set_magic_quotes_runtime

set_magic_quotes_runtime -- Sets the current active configuration setting of magic_quotes_runtime
bool set_magic_configuration_runtime( bool $new_setting )
Set the current active configuration setting of magic_quotes_runtime
自5.3后,已经废弃此函数,建议不要再使用

tmpfile 建立一个临时文件

 

转载于:https://www.cnblogs.com/sgsheg/archive/2012/11/17/2775428.html

你可能感兴趣的文章
平衡树(树的直径)
查看>>
TextView改变颜色
查看>>
Linux环境下段错误的产生原因及调试方法小结
查看>>
[BZOJ 1502][NOI2005]月下柠檬树(自适应Simpson积分)
查看>>
initialize方法与load方法比较
查看>>
一致性hash算法及其java实现
查看>>
Arraylist和linkedlist的区别(JDK源码阅读)
查看>>
PHP常见的加密技术
查看>>
Asp.net读取AD域信息的方法(一)
查看>>
两道题学习动态规划
查看>>
php-fpm使用
查看>>
OpenGL ES 入门之旅--OpenGL 下的坐标系和着色器渲染流程
查看>>
c# 扫雷游戏制作步骤
查看>>
mysql实战31 | 误删数据后除了跑路,还能怎么办?
查看>>
Android Q Labs | Android Q 手势导航
查看>>
.net Core 依赖注入 Add********说明
查看>>
Treap
查看>>
ASP.NET MVC Razor
查看>>
Subscribe的第四个参数用法
查看>>
零值比较--BOOL,int,float,指针变量与零值比较的if语句
查看>>