1.array_merge把两个数组合并成一个数组
<?php
$a1=array("red","green");
$a2=array("blue","yellow");
print_r(array_merge($a1,$a2)
);
?>
结果:Array ( [0] => red [1] => green [2] => blue [3] => yellow )
2.strip_tags剥去字符串中的html标签
<?php
echo strip_tags("Hello <b>world!</b>");
?>
结果:Hello world!
3.strtoupper把所有字符转化为大写
4,文字编码
$aa='张三';
$bb=iconv("UTF-8", "GBK", $aa);
5,http_build_query()
http_build_query()函数的作用是使用给出的关联(或下标)数组生成一个经过 URL-encode 的请求字符串。
写法格式:http_build_query ( mixed $query_data [, string $numeric_prefix [, string $arg_separator [, int $enc_type = PHP_QUERY_RFC1738 ]]] )
打个比方:$data = array("name"=>"callback" , "value"=>"test");
$rescult = http_build_query($data);
我们输出下$rescutl可以得到:
name=callback&value=test
这个有什么用呢,这是模拟http请求的,把得到的数据data通过函数URL-encode,一般是用在回调。