管理员的version里创建个版本才可以用好吧= =
Project settings里的version加个版本即可[……]
Monthly Archives: December 2018
Make sure that you run ‘/usr/local/php/bin/phpize’ in the top level source directory of the module 解决办法
这报错我是编译安装php-openssl的openssl.so的时候出现的,解决办法很简单,在目录里执行:
cp ./config0.m4 ./config.m4
然后再继续编译模块即可。
方法整理自:https://www.cnblogs.com/ttiande[……]
那些有用的日常用品
Gran's remedy
对于脚丫喜欢出汗的同学,绝对是止汗神器,附带除臭功能
Linux Shell Bash判断文件或文件夹是否存在
以下代码完整转自:shell bash判断文件或文件夹是否存在
#shell判断文件夹是否存在
#如果文件夹不存在,创建文件夹
if [ ! -d "/myfolder" ]; then mkdir /myfolderfi#shell判断文件,目录是[......]