-
《龙腾世纪 审判》全Agent收集图文解析攻略
由于本游戏官方没有中文,所以为了方便查阅,游戏中的地名、人名和任务名都保留了英文原文。 Val Royeaux 1.Belle 你只能在第一次进入Val Royeaux时招募她,一旦你离开了,她就会消失...
游戏攻略 2015-01-04 17:12:10 -
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 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 -
php使用GeoIP库实例
本文为大家讲解的是php使用GeoIP库的方法,及应用实例讲解,本文给出了细分到国家、细分到城市的代码实例 感兴趣的同学参考下。 需要注意的是maxmind是geoip数据库的提供方, 同时也提供了很多语言的sample和api说明文档...
PHP 2015-01-01 16:09:05 -
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 -
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 -
PHP中的file_get_contents获取远程页面乱码的问题解决方法
本文为大家讲解的是PHP中的file_get_contents获取远程页面乱码的问题解决方法,感兴趣的同学参考下。 PHP的file_get_contents获取远程页面内容,如果是gzip编码过的,返回的字符串就是编码后的乱码 1、解决方法,找个ungzip的函数来转换下 2、给你的url加个前缀,这样调用 $content = file_get_contents("compress.zlib://".$url); 无论页面是否经过gzip压缩,上述代码都可以正常工作! 使用curl模块同样可解决问题 function curl_get($url, $gzip=false){ $curl = curl_init($url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); &nb...
PHP 2014-12-31 22:36:04 -
php MessagePack使用介绍
本文为大家讲解的是php MessagePack使用介绍,感兴趣的同学参考下. 1,今天在hacknews上看到很多人对messagepack的争论。首先了解什么是MessagePack:MessagePack is a binary-based efficient object serialization library. It enables to exchange structured objects between many languages like JSON. But unlike JSON, it is very fast and small. 2,MessagePack的主要用途,作者解释说有两大用途:一是Space-efficient storage for Memcache entries (Pinterest),节省空间类型的mamcache应用;另一个是用于RPC传输, This use case is fairly close to my original intent. When one is designing an RPC syst...
PHP 2014-12-31 22:24:08 -
php中getservbyport与getservbyname函数用法实例
本文主要为大家讲解的是php中getservbyport与getservbyname函数用法,以实例形式分析了getservbyport与getservbyname函数获取server端的端口等信息的方法,需要的朋友可以参考下 代码如下: string getservbyport ( int $port , string $protocol ) */ $services=array('80','21','22','23','25','143'); //定义数组 foreach($services as $service) //循环读取内容 { $protocol=getservbyport($service,'tcp'); &...
PHP 2014-12-31 22:21:09