Closure

Posted by 夏泽民

匿名函数与闭包的区别 匿名函数:没有函数名称的函数; 这就是匿名函数: function(argument1,argument2){



lex

Posted by 夏泽民

ex Lex 是一种生成扫描器的工具。扫描器是一种识别文本中的词汇模式的程序。 这些词汇模式(或者常规表达式)在一种特殊的句子结构中定义,这个我们一会儿就要讨论。



vld_dot_graphviz

Posted by 夏泽民

PHP7.1下 vld扩展的安装使用 PHP7.1下 vld扩展的安装使用 原创 2017年03月29日 08:03:05 595 1)git clone https://github.com/derickr/vld.git



phpvld

Posted by 夏泽民

vld介绍



phpize

Posted by 夏泽民

编译PHP扩展的工具,主要是根据系统信息生成对应的configure文件 安装php(fastcgi模式)的时候,常常有这样一句命令:/usr/local/webserver/php/bin/phpize 一、phpize是干嘛的? phpize是什么东西呢?php官方的说明: http://php.net/manual/en/install.pecl.phpize.php phpize是用来扩展php扩展模块的,通过phpize可以建立php的外挂模块 比如你想在原来编译好的php中加入memcached或者ImageMagick等扩展模块,可以使用phpize,通过以下几步工作。 二、如何使用phpize? 当php编译完成后,php的bin目录下会有phpize这个脚本文件。在编译你要添加的扩展模块之前,执行以下phpize就可以了; 比如现在想在php中加入memcache扩展模块:我们要做的只是如下几步 ———————————————————————— tar zxvf memcache-2.2.5.tgz cd memcache-2.2.5/ /usr/local/webserver/php/bin/phpize ./configure –with-php-config=/usr/local/webserver/php/bin/php-config make make install ———————————————————————— 注意./configure 后面可以指定的是php-config文件的路径 这样编译就完成了,还需要做的是在php.ini文件中加入extension值 extension = “memcache.so”



Search

Popular posts

Anything in here will be replaced on browsers that support the canvas element

Recent posts

This blog is maintained by 夏泽民

Get in touch with me at 465474307@qq.com

Subscribe to our mailing list

* indicates required