09 2019 档案
摘要:方法一: 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...
阅读全文