Home > php教程 > php手册 > php ini_get错误设置方法

php ini_get错误设置方法

WBOY
Release: 2016-05-25 16:50:11
Original
807 people have browsed it

利用ini_set可以快速的修改php.ini配置设置,无需打开php.ini就可以了,特别是虚拟主机时你没有修改php.ini的权限时就会发现这个函数的作用了,下面看几个实例吧。

ini_set具有更改php.ini设置的功能,此函数接收两个参数,需要调整的配置变量名,以及变量的新值.

<?php 
error_reporting(e_all);    //1.指定错误报告,错误类型为全部 
//ini_set("error_reporting",e_all);    //临时改变配置文件的值 
//ini_get("upload_max_filesize");    //获取配置文件的值 
ini_set("display_errors","off");    //2.关闭配置文件中的显示错误 
ini_set("log_errors","on");    //3.开启错误日志功能 
ini_set("error_log","c:/error.log");    //4.指定错误文件(可写) 
error_log("this is a error message!!!!");    //输出错误信息 
?>	
Copy after login

错误处理:1.语法错误,2.运行时的错误,3.逻辑错误

错误报告:1,错误:e_error,2,警告:e_warning,3,注意:e_notice

建议:开发阶段:开发是输出所有的错误报告,有利于调试程序,运行阶段:不要让程序输出任何一种错误报告

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template