加载中
number_format 的千分位

PHP语言中的number_format()定义如下 function number_format ($number , $decimals = 0 , $dec_point = '.' , $thousands_sep = ',' ) {} 注意第四位参数,是千分位符号,默认是逗号,而不是...

Mac使用brew安装多版本php

Mac 多版本php的安装 swingcoder 2020-05-31 因有些项目仍运行在已经废弃的php5的版本,有些运行在php7,所以需要配置多版本的php开发运行环境,下面是成功实践的安装步骤。 0. 环境说明 $ ...

DES/ECB/PADDING5的openssl加解密码方法

/** * des-ecb加密 * @param string $data 要被加密的数据 * @param string $key 加密密钥 / function des_ecb_encrypt($data, $key){ return openssl_encrypt ($data, 'des-ecb', $key); } ...

nginx+php-fpm故障一则:13: Permission denied

13: Permission denied osx+nginx+php-fpm模式时,打不开任何页面,查看nginx log可以看到上面的错误信息。 问题原因:1 webroot目录没有访问权限,如drwx------@,2 php-fpm进程所有者用户没...

php://input 得不到数据的问题

php://input 获取数据流不支持 enctype="multipart/form-data" 参数,check here. php://input is a read-only stream that allows you to read raw data from the request body. In the ca...

2018/11/07 10:10
1.4K
PHP上传文件大小限制的调整 Nginx 413 Request Entity Too Large

Nginx+php-fpm架构,遇到这个错误时:Request Entity Too Large 或 Nginx 413 Request Entity Too Large,需要做如下调整即可。 1、修改配置一:Tune Nignx.conf setting: # set client bod...

2018/06/11 19:29
517
ThinkPHP: URL不区分大小写

ThinkPHP 要实现URL全部小写,需要修改配置:/ThinkPHP/Conf/convention.php的参数: URL_CASE_INSENSITIVE=true 注意如果发现不生效,请检查一下是否开启了debug模式,如果有开启,ThinkPH...

2018/06/11 16:25
225
php xml array 互相转换

function xml2arr($xml) { $obj = simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA); $json = json_encode($obj); $arr = json_decode($json,...

2018/03/19 17:12
653
php curl上传文件新方法

php5.6之后的版本上传文件改为此种方式了 new \CURLFile(realpath($file_path)) 之前的方法 @$file_path 已经失败。

2017/12/19 17:33
570
php curl不能解析/etc/hosts设置的本地域名

mac os x +php5.6.30版本尝试过下面的参数仍然无效,直接无视/etc/hosts文件的定义,hosts文件权限已经全局可读。 function post_content($url, $data) { $ch = curl_init(); ...

2017/11/22 17:16
3.4K
PHP:中文转拼音和拼音转中文

1.中文转拼音 优点:基于开源词库CC-CEDICT;可返回音调;多种内存资源选项;支持姓名优化(多音字) https://github.com/overtrue/pinyin 2.拼音转中文 优点:基于baidu输入法 API: http:/...

2017/09/11 14:30
1.1K

没有更多内容

加载失败,请刷新页面

返回顶部
顶部