常用官方php版本下载链接
摘要:windows 版本 2、perl dll 库:
阅读全文
HTTP request failed! HTTP/1.1 411 Length Required
摘要:$opts = array( 'http'=>array( 'method'=>"POST", 'header' => 'Content-Length: 0' //这里不要写其他header ) ); $context = stream_context_create...
阅读全文
php ip2long 负数问题
摘要:官方网站: Note: 因为PHP的 integer 类型是有符号,并且有许多的IP地址讲导致在32位系统的情况下为负数, 你需要使用 "%u" 进行转换通过 sprintf() 或 printf() 得到的字符串来表示无符号的IP地址。 其他方法见链接: https://blog.csdn.net
阅读全文
php 利用迭代器遍历文件夹
摘要:1、遍历文件夹 scandir 2、原生的迭代器Iterrate 就是这么简单
阅读全文
php 过滤emoji
摘要:function filter_emoji_string($str){ $str = trim($str); $str = preg_replace_callback('/./u',function (array $match) {return strlen($match[0]) >= 4 ? ''
阅读全文
图片在数据库中的存储方式
摘要:http://blog.csdn.net/haluoluo211/article/details/52080325 商品图片,用户上传的头像,其他方面的图片。目前业界存储图片有两种做法: 1、 把图片直接以二进制形式存储在数据库中 一般数据库提供一个二进制字段来存储二进制数据。比如mysql中有个b
阅读全文
php 万能加密
摘要:function fue($hash,$times) { // Execute the encryption(s) as many times as the user wants for($i=$times;$i>0;$i--) { // Encode with base64... $hash=ba
阅读全文