摘要:
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
摘要:
去下载对应的mac或者windows的so扩展包,放到自己的php扩展目录下 https://github.com/Microsoft/msphpsql/releases 去php.ini开启扩展 extension=php_sqlsrv_74_nts.so extension=php_pdo_sq 阅读全文
摘要:
server { listen 127.0.0.1:80 default_server; root /; charset utf-8; client_max_body_size 128M; location / { root /usr/local/etc/nginx/html; index inde 阅读全文
摘要:
chunk分块的使用 使用with查询数据 阅读全文
摘要:
MacOS Mojave 系统之后,如果想安装 php5.6 版本的时候,无法用brew install php5.6 安装,因为在新的 brew 中已经废弃了 php5.6 和 php7.0,如果使用 brew search php 搜索出来的Php版本最低是 php@7.1 的,所以有相关需求的 阅读全文
摘要:
最近刚切换回 Mac 下进行开发,所以写了比较多的 Mac 环境部署之类的文章。今天需要重新切换一下本地的开发环境。原本想直接在当前环境下开发, 毕竟 Mac 自带了 PHP 环境,今天需要新添一个扩展 freetype ,需要重新编译一遍 PHP。 由于这个扩展是核心内置扩展,没法通过phpize 阅读全文
摘要:
方法一: PATH=/bin:/usr/bin:/usr/local/bin:${PATH} export PATH 方法二: exec /bin/zsh 方法三: exec /usr/bin/zsh 阅读全文
摘要:
错误信息 Authentication plugin 'caching_sha2_password' cannot be loaded: dlopen(/usr/local/mysql/lib/plugin/caching_sha2_password.so, 2): image not found 阅读全文
摘要:
首先下载homebrew https://brew.sh/ 国内如果下载慢的话: 一、获取 install 文件,把官网给的脚本拿下来 curl fsSL https://raw.githubusercontent.com/Homebrew/install/master/install brew_i 阅读全文
摘要:
``` public function curl_post($url , $data=array()){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_seto... 阅读全文