-
PHP管理内存函数 memory_get_usage()使用介绍
本文以示例的方式向大家讲解了PHP管理内存函数 memory_get_usage()使用介绍,感兴趣的同学参考下。 我们在实际编码中,要想实现对内存的查看和操作,许多程序员们第一个想到的就是PHP memory_get_usage()这个PHP脚本内存函数 下面是PHP memory_get_usage()使用示例: echo memory_get_usage(), '<br />'; //143952 $tmp = str_repeat('http://blog.micxp.com/', 4000); echo memory_get_usage(), '<br />'; //232048 unset($tmp); echo memory_get_usage(); //143952 上面的程序后面的注释代表了它们的输出(单位为 byte(s)),也就是当时 PHP 脚本使用的内存(不含 memory_get_usage() 函数本身占用的内存) 由上面的例子可以看出,要想减...
PHP 2015-01-02 14:45:05 -
php header函数应用示例代码
本文为大家整理的是php header函数应用示例代码,包括发送404头,302,301重定向等 示例,感兴趣的同学参考下。 <?php /*** Function: PHP header() examples (PHP) ** Desc: Some examples on how to use the header() function of PHPYou find a detailed tutorial at expertsrt.com (English) or at ffm.junetz.de (German).These is also a good help about caching at web-caching.com. ** Example: see below. <br/><br/><b>Tip:</b> You can use these sites to check your headers: <a href="http://web-sniffer.net/">w...
PHP 2015-01-02 13:57:05 -
用PHP ob_start()控制浏览器cache、生成html实现代码
本文为大家讲解了如何用PHP ob_start()控制浏览器cache、生成html的实现方法,感兴趣的同学参考下。 Output Control 函数可以让你自由控制脚本中数据的输出...
PHP 2015-01-02 13:36:04 -
PHP Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in解决方法
本文为大家讲解的是PHP Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in错误的解决方法,感兴趣的同学参考下。 错误描述 PHP Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /web/xxx.php on line 行号 或 PHP Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /web/xxx.php on line 行号 原因分析 在执行mysql_fetch_array方法获取数据时,提交给该方法的查询资源是无效的...
PHP 2015-01-02 03:15:03 -
php错误:PHP Warning: date(): It is not safe to rely on the system's timezone settings.解决方法
本文为大家讲解的是PHP Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for '8.0/no DST' instead in问题的解决方法,感兴趣的同学参考下. 在写php程序中有时会出现这样的警告: PHP Warning: date(): It is not safe to rely on the system's timezone se...
PHP 2015-01-02 02:54:03 -
Last_IO_Error: error connecting to master解决方法 mysql错误
本文为大家讲解的是mysql错误:Last_IO_Error: error connecting to master解决方法,感兴趣的同学参考下。 错误提示: Slave_IO_Running: Connecting Slave_SQL_Running: Yes Last_IO_Errno: 2003 Last_IO_Error: error connecting to master '[email protected]:3306' - retry-time: 60 retries: 1 错误原因: 主数据库服务器没有关闭防火墙...
数据库操作教程 2015-01-01 14:54:08 -
PHP empty函数报错:Fatal error: Can't use function return value in write context解决方法
本文为大家讲解的是PHP empty函数报错:Fatal error: Can't use function return value in write context解决方法,感兴趣的同学参考下. PHP开发时,当你使用empty检查一个函数返回的结果时会报错:Fatal error: Can't use function return value in write context 例如下面的代码: <?php echo empty(strlen('test')); 转到PHP手册里面查看,在empty函数描述的地方有以下文字: Note : empty() only checks variables as anything else will result in a parse error...
PHP 2015-01-01 05:54:03 -
linux系统下php安装mbstring扩展的二种方法
本文为大家提供的是linux系统下php安装mbstring扩展的二种方法,感兴趣的同学参考下. 1...
PHP 2015-01-01 01:36:03 -
PHP输出缓存(output_buffering)使用详解
本文为大家讲解的是PHP输出缓存(output_buffering)使用详解,感兴趣的同学参考下。 首先明确一下PHP的输出顺序 1.打开了php输出缓存: echo,print -> php output_buffring -> server buffering -> browser buffering -> browser display 2.未打开php输出缓存: echo,print -> server buffering -> browser buffering -> browser display 另外明确一下浏览器的输出缓存:IE为256Bytes, Chrome与FireFox为1000Bytes,只有输出数据达到了这个长度或者脚本结束浏览器才会将数据输出在页面上 再来说说用到的几个PHP设置和API: 1.php.ini中的output_buffering配置 •Off: 表示关闭PHP输出缓存 •On: 打开无限大的输出缓存 •4096: 打开大小为4096Byte...
PHP 2015-01-01 00:18:05 -
PHP Warning: unlink(/xxx/xxx/xxx) : Is a directory in
本文为大家讲解的是PHP Warning: unlink(/xxx/xxx/xxx) : Is a directory in 错误的原因和解决方法,感兴趣的同学参考下。 错误描述 PHP Warning: unlink(/xxx/xxx/xxx/) [<a href='function.unlink'>function.unlink</a>]: Is a directory in /web/xxx.php on line 行号 错误原因 unlink只能删除文件,不能删除目录 解决方法 根据错误行号,查看是否传给unlink的参数是个目录而不是一个文件...
PHP 2014-12-31 23:15:05 -
is marked as crashed and should be repaired解决方法 mysql错误
本文为大家讲解的是mysql错误is marked as crashed and should be repaired解决方法,感兴趣的同学参考下。 问题描述 由于服务器存储满了导致MySQL启动不起来了,清理了存储空间后再启动MySQL报了个“Table XX is marked as crashed and should be repaired”,看意思应该是表损坏了 解决方法 解决这个用 myisamchk 就可以了(我的表都是ISAM引擎的)...
数据库操作教程 2014-12-31 00:03:04