php常用系统函数

 首先纯html页要用meta标签声明编码
  <meta http-equiv="Content-Type" content="text/html; charset="utf-8" />
//有php输出的页要使用header函数声明编码
  header("Content-Type:text/html;   charset=utf-8");

//打开错误信息
 error_reporting(E_ALL);
 ini_set('display_errors', true);

//设置程序最大可运行时间
 set_time_limit(180);

//获取内存使用情况
 echo  "<br/>".memory_get_usage();

 

register_shutdown_function是指在执行完所有PHP语句后再调用函数,不要理解成客户端关闭流浏览器页面时调用函数。
      可以这样理解调用条件:
      1、当页面被用户强制停止时
      2、当程序代码运行超时时
      3、当PHP代码执行完成时

posted on 2013-08-01 15:57  andydaopeng  阅读(140)  评论(0编辑  收藏  举报

导航