PHP相关
1 2
|
./configure -prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/bin/mysql_config --with-iconv-dir=/usr/local --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-discard-path --enable-mbregex --enable-fastcgi --enable-fpm --enable-mbstring --with-mcrypt --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-sockets --with-xmlrpc --enable-zip --enable-pdo --with-pdo-mysql --with-mysql // 需要安装MySQL 以及一些其他的常用lib
|
PHP JSON处理
对于返回的util 可以使用5.4开始使用的trait进行嵌入 然后self::调用
1 2 3 4 5 6 7 8
|
return json_encode($body, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES);
JSON_UNESCAPED_SLASHES (integer) 不要编码 /。 自 PHP 5.4.0 起生效。 JSON_UNESCAPED_UNICODE (integer) 以字面编码多字节 Unicode 字符(默认是编码成 uXXXX)。 自 PHP 5.4.0 起生效
string json_last_error_msg ( void ) // php55以上才有这个方法 得到json转换的错误
|
PHP-FPM搭建中NGINX出现file not found的问题-参见备忘录
TODOLIST
centos上配一个LNMP
Linux MOUNT AWK等命令
Kafka、RabbitMQ、Hadoop、Spark、Redis、Memcached等工具类的使用
PHP YII框架实现