摘要:
解决方法: 一、进入mysql数据库命令行 二、输入use mysql; 三、设置root账号密码为123456可以访问用任何ip访问mysql服务器 输入grant all privileges on *.* to root@"%" identified by "密码"; 这相当于是给IP- 阅读全文
摘要:
安装 memcached yum insatll memcached 我们安装完之后 我们就需要的是 启动了 命令如下 memcached -d -p 11211 -u root 第二步 就是在linux中安装php的memcache的扩展(根据提示安装); https://www.linuxidc 阅读全文
摘要:
$result = []; array_map(function ($value) use (&$result) { $result = array_merge($result, array_values($value)); }, $data); 阅读全文
摘要:
<script type="text/javascript"> var a_idx = 0; jQuery(document).ready(function($) { $("body").click(function(e) { var a = new Array("富强", "民主", "文明", 阅读全文
摘要:
/** * 获取天气 */ function get_tq () { //获取用户ip地址 $ip = get_real_ip(); // $ip = '123.125.71.38'; //根据ip地址 获取用户所在城市 $api_key = '8d6c8b8f3749aed6b... 阅读全文
摘要:
/** * 多维数组排序 * * @access public * @param array $arrays 多维数组 * @param string $sort_key 排序字段 * @param striny $sort_order 排列顺序 * @param string $sort_type 排序类型 ... 阅读全文
摘要:
function is_serialized( $data ) { $data = trim( $data ); if ( 'N;' == $data ) return true; if ( !preg_match( '/^([adObis]):/', $data, $badions ) ) ... 阅读全文
摘要:
/** * 生成随机字符串 * @author 宁佳兵 * @param int $length * @return string */ function createNonceStr($length = 16) { $chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; $... 阅读全文
摘要:
首先在入口文件index.php得的当前目录下 创建 .htaccess文件。 然后将下面一段代码放进去; 【使用这种方式,首先要确认apache是否开启mod_rewrite 功能】 阅读全文
摘要:
/** * 获取某目录下所有文件 (递归次数限制10次, 以免产生性能瓶颈) * * @param string 目录 * @param array 获取的所有文件 * @return void 结果直接传递给第二个参数 * @author 宁佳兵 <meilijing.ning@foxmail.c 阅读全文