摘要: $str = '150.2';$str_s = $str * 100;echo $str_s;echo "-------";echo (int)($str * 100);echo '****--';echo (int)($str_s);echo '****--'; echo (int)(string)($str_s);echo '****--'; echo (int)(15020);exit;1... 阅读全文
posted @ 2018-12-22 17:21 盘思动 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 修改了php配置需要平滑启动php-fpm ps -aux | grep php-fpm 找到phpfpm 的master process的进程id kill -SIGUSR2 31158 实现平滑重启php-fpm ### 阅读全文
posted @ 2018-12-22 10:22 盘思动 阅读(1739) 评论(0) 推荐(0) 编辑