PHP pack和unpack函数详解

pack

压缩资料到位字符串之中。

语法: string pack(string format, mixed [args]…);

返回值: 字符串

函数种类: 资料处理

内容说明

本函数用来将资料压缩打包到位的字符串之中。本函数和 Perl 的同名函数功能用法完全相同。

Read More

php的iconv函数中utf8与utf-8的差异

开发中遇到一个奇怪的问题,报错如下:
iconv() [<a href='function.iconv'>function.iconv</a>] : Wrong charset, conversion from 'gbk' to 'utf8' is not allowed at line 24

查来查去,也没发现有什么问题,后来经请教同事,原来是utf8应改为utf-8,可能是由于linux函数库中就是utf-8吧,所以以后建议使用utf-8,增加兼容性。

还有一点:json格式数据中文只支持utf-8编码,应用iconv转码中文,否则前台接收的数据为空。

php使用json_decode返回NULL

php5.2以后自带json_decode函数,但是对json文本串的格式要求非常严格。

很可能使用该函数得到的返回值是NULL

可以使用使用json_last_error()函数获取到的返回值来帮助我们判断出问题的原因。

其中如果提示错误JSON_ERROR_SYNTAX(Syntax error),表示json串格式错误。

Read More

PHP使用iconv函数遍历数组转换字符集

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
* 字符串/二维数组/多维数组编码转换
* @param string $in_charset
* @param string $out_charset
* @param mixed $data
**/

function array_iconv($data, $in_charset='GBK', $out_charset='UTF-8'){
if (!is_array($data)){
$output = iconv($in_charset, $out_charset, $data);
}elseif(count($data)===count($data, 1)){//判断是否是二维数组
foreach($data as $key => $value){
$output[$key] = iconv($in_charset, $out_charset, $value);
}
}else{
eval_r('$output = '.iconv($in_charset, $out_charset, var_export($data, TRUE)).';');
}
return $output;
}

ping localhost 返回 ::1的导致不能打开http://localhost的原因及解决

虽然可以在浏览器中正常访问http://localhost 但用file,file_get_contents等函数打开http://localhost 异常。用127.0.0.1也可以打开,本地hosts指向也正常,尝试ping localhost结果返回的是::1,推测不是httpd和php的配置问题,是php不能识别::1所致

ping localhost
reply from ::1: times<1ms
reply from ::1: times<1ms
reply from ::1: times<1ms

应该是返回127.0.0.1,::1显然是错误的,不过为什么呢,hosts文件也没有错啊

127.0.0.1 localhost

这导致php的file_get_contents,getimagesize等函数不能打开“ http://localhost ”开头的,只可以打开“ http://127.0.0.1 ”开头的。

卸载ipv6:ipv6 uninstall

一切恢复正常。