php7安装redis扩展的方法

php7安装redis扩展的方法

确认是php7后开始安装 移动到下载文件夹: cd /root/src (具体文件夹自己选择) 下载php7-redis: wget https://github.com/phpredis/phpredis/archive/php7.zip 改名: mv ./php...

js中闭包的概念

js中闭包的概念

闭包并不是 JavaScript 特有的,大部分高级语言都具有这一能力。 什么是闭包? A closure is the combination of a function bundled together (enclosed) with references to its sur...

PHP 中 require 的用法

PHP 中 require 的用法

PHP 中 require 的用法 在PHP中require语句作用是包含并运行指定文件,与include的区别:include在引入不存文件时产生一个警告且脚本还会继续执行,而require则会...