最近开始写PHP项目,各种常用的方法简单整理一下,以备后用。
1. Xml转Json
json_decode(json_encode(simplexml_load_string($xml, ‘SimpleXMLElement‘, LIBXML_NOCDATA)), true)
2. Request请求封装
3. RSA加密解密算法
4. AES加密解密算法
5. 数组转字符串&拼接
public function build_query($data){ $str=‘‘; if(is_array($data)){ ksort($data); foreach ($data as $key=>$value){ $str .= (empty($str) ? ‘‘ : ‘&‘ ) . $key . ‘=‘ . (is_array($value) ? ‘(‘ .self::build_query($value). ‘)‘ : $value); } } return $str; }
原文:https://www.cnblogs.com/aaronguo/p/10587396.html