07 2020 档案
摘要:生成密钥 ssh-keygen -t rsa -f ~/.ssh/id_rsa -N '密码' -t指定密钥产生算法 -f指定生成文件,登陆是使用ssh命令进行的,而他的配置文件默认的私钥为家目录下.ssh/id_rsa -N对私钥加密以防止私钥泄露后他人乱用,但这也使得以后每次登陆必须输入-N指定
阅读全文
摘要:configure: error: Cannot find PHP-config. Please use --with-php-config=PATH 一般出现这个错误说明你执行 ./configure 时 --with-php-config 这个参数配置路径错误导致的。 修改为: ./config
阅读全文
摘要:$func = 0;$funList = ['one', 'two']; call_user_func_array(array($this,$funList[$func]),array('A','B'));
阅读全文