
php扩展
echo的PHP开发
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【inotify】PHP扩展安装-inotify
1、下载扩展 请根据PHP版本下载inotify 2、解压扩展 tar zxvf inotify-2.0.0.tgz 3、进入目录安装 cd inotify-2.0.0 运行以下命令 【请使用find / -name phpize 找到路径】 1、/www/php/bin/phpize 2、./configure --with-php-config=/www/php/bin/php-config...原创 2020-03-02 02:20:11 · 595 阅读 · 0 评论 -
【event扩展】]php7下如何安装event扩展?
wget -c http://pecl.php.net/get/event-2.3.0.tgz -P /usr/local/src cd /usr/local/src tar -zxvf event-2.3.0.tgz && cd event-2.3.0 /usr/local/php/bin/phpize ./configure --with-php-config=/usr/loc...原创 2019-12-25 23:58:29 · 169 阅读 · 0 评论 -
【QueryList】强大的PHP采集工具,让采集更简单一点。
安装composer(windows下) (注意:PHP版本必须>=7.0 ) 使用安装程序 Conposer-Setup.exe,他将安装最新版本的Conposer,并设置好系统环境变量,因此你可以在任何环境下使用conposer命令。 命令行安装: 设置环境变量,并运行命令安装composer.phar文件: C:Users\username>cd C:in C:in>...原创 2019-05-13 10:54:26 · 1178 阅读 · 0 评论 -
【PHPExcel】读取EXCEL中的图片并保存到本地的方法
直接上代码: 源代码: //导入测试 $source_file = FILENAME.'test/imgTest.xls'; $imgPath = FILENAME.'img/'.date('Ymd').'/'; if(!file_exists($imgPath)){ mkdir($imgPath); } $objPHPExcel = new \PHPExcel(); $objReader = ...原创 2019-05-13 10:56:50 · 679 阅读 · 0 评论