php
qq_32722591
这个作者很懒,什么都没留下…
展开
-
获取php服务时间戳
$_SERVER['REQUEST_TIME'] 获取时间戳,这样获取效率提高很多。原创 2016-11-08 17:31:13 · 276 阅读 · 0 评论 -
反射获取类名
/* Pass the name of the class, not a declared handler */ function get_public_methods($className) { /* Init the return array */ $returnArray = array(); /* Iterate through each method in翻译 2017-02-05 15:50:58 · 350 阅读 · 0 评论 -
php 多维数组遍历,返回遍历处理后的数组,数组结构不不变
<?php public function for_array($arr = array ()) { if(empty($arr)) { return false; } foreach ( $arr as &$v) { if (is_array($v)) { $v = $this->for_ar...原创 2018-04-09 14:31:28 · 1617 阅读 · 0 评论 -
Liunx+Nginx+php+Mysql环境安装
一、安装前准备 1、个人喜欢liunx小插件 vim root# yum install vim 提示是否同意安装 选择 y 回车 然后就在各种依赖文件。 2、安装php 选择编译安装,编译安装属于一个复杂的方式,但很灵活。 root# wget http://hk1.php.net/get/php-7.2.10.tar.gz/from/this/mirror //下载文件 下载完成,解压 ...翻译 2018-10-14 20:49:35 · 141 阅读 · 0 评论