前言 在网上找到了一个不错的PHP方面的对称加密算法;在PHP的语法环境里,有urlencode与urldecode,base64_encode和base64_decode自带的对称算法,不过这些自带的算法不能称之为加密算法,只能说...
functionhttp_post_data($url,$data){$data=json_encode($data);$ch=curl_init();curl_setopt($ch,CURLOPT_POST,1);curl_setopt($ch,CURLOPT_URL,$url);curl_setopt($ch,CURLOPT_POSTFIELDS,$data);curl_setopt($ch,CURLOPT_HTTPHEADER,array(Content-Type:ap...
定义和用法 number_format() 函数通过千位分组来格式化数字。 语法 number_format(number,decimals,decimalpoint,separator) 参数描述 number 必需。要格式化的数字。如果未设置其他参数,则数字会被格式...
php5.5在使用file_get_contents时候可以用HTTPS协议 但是到了php5.6就不能使用 publicfunctioncurl_https($url,$data=array(),$header=array(),$timeout=30){$ch=curl_init();curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);curl_setopt(...
微信获取post数据 php5.5:获取$GLOBALS[HTTP_RAW_POST_DATA] php5.5以上可以这样获取file_get_contents(php://input)...
1就是男性2就是女性/***通过身份证获取性别类型*@paramtype$card*@returnint*/publicfunctiongetCardSex($card){$num=substr($card,17,17);if($num%2==0){return2;}else{return1;}}...
只是和大小有关系 ?phpechodate(Y-m-dH:i,time()).|;//24小时制echodate(Y-m-dh:i,time()).|;//12小时制echodate(y-m-dh:i,time()).|; http://www.apizl.com/dev/runCode/11be1533ce2f55195f792fc2952eb0b0.html...
/***时间转时间*@paramtype$date*@paramtype$f*@returntype*/functiondateToDate($date,$f=Y-m-d){if($date0){if(strlen($date)==10){returndate($f,$date);}if(strlen($date)==13){$date=substr($date,0,10);returndate($f,$date);}}returndate($f,strt...
php整数转小数点 ?php$number=1024;$res=sprintf(%.2f,$number);echo$res; 运行示例: http://www.apizl.com/dev/runCode/cfc5853a6f59e4ddc3e6186a38c2554c.html...
php换行符替换成其他 /***换行符转换行符实体html*@paramtype$str*@returntype*/functionhToBr($str){$str=str_replace(array(\r,\n),br/,$str);return$str;}...