分类:
php中简单的对称加密算法实现

php中简单的对称加密算法实现

栏目分类:PHP 浏览次数:302 发布时间:2017-01-07

前言 在网上找到了一个不错的PHP方面的对称加密算法;在PHP的语法环境里,有urlencode与urldecode,base64_encode和base64_decode自带的对称算法,不过这些自带的算法不能称之为加密算法,只能说...

TAG:
PHP通过http post发送json数据

PHP通过http post发送json数据

栏目分类:PHP 浏览次数:323 发布时间:2017-01-06

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...

TAG:
php 格式化千位符 格式化金额显示

php 格式化千位符 格式化金额显示

栏目分类:PHP 浏览次数:356 发布时间:2017-01-05

定义和用法 number_format() 函数通过千位分组来格式化数字。 语法 number_format(number,decimals,decimalpoint,separator) 参数描述 number 必需。要格式化的数字。如果未设置其他参数,则数字会被格式...

TAG:
php5.5 版本和5.6 file_get_contents curl

php5.5 版本和5.6 file_get_contents curl

栏目分类:PHP 浏览次数:333 发布时间:2017-01-03

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(...

TAG:
php 获取全部post参数 php5.5 php5.6

php 获取全部post参数 php5.5 php5.6

栏目分类:PHP 浏览次数:414 发布时间:2017-01-02

微信获取post数据 php5.5:获取$GLOBALS[HTTP_RAW_POST_DATA] php5.5以上可以这样获取file_get_contents(php://input)...

TAG:
php超简单的判断身份证性别方法

php超简单的判断身份证性别方法

栏目分类:PHP 浏览次数:438 发布时间:2016-12-22

1就是男性2就是女性/***通过身份证获取性别类型*@paramtype$card*@returnint*/publicfunctiongetCardSex($card){$num=substr($card,17,17);if($num%2==0){return2;}else{return1;}}...

TAG:
php date函数输出24小时制

php date函数输出24小时制

栏目分类:PHP 浏览次数:326 发布时间:2016-12-21

只是和大小有关系 ?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...

TAG:
php时间转时间方法

php时间转时间方法

栏目分类:PHP 浏览次数:266 发布时间:2016-12-17

/***时间转时间*@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...

TAG:
php 整数型转两位小数点

php 整数型转两位小数点

栏目分类:PHP 浏览次数:315 发布时间:2016-12-07

php整数转小数点 ?php$number=1024;$res=sprintf(%.2f,$number);echo$res; 运行示例: http://www.apizl.com/dev/runCode/cfc5853a6f59e4ddc3e6186a38c2554c.html...

TAG:
php 换行符替换其他

php 换行符替换其他

栏目分类:PHP 浏览次数:257 发布时间:2016-12-07

php换行符替换成其他 /***换行符转换行符实体html*@paramtype$str*@returntype*/functionhToBr($str){$str=str_replace(array(\r,\n),br/,$str);return$str;}...

TAG: