上一页 1 ··· 89 90 91 92 93 94 95 96 97 ··· 133 下一页
摘要: 查看下是不是git是不是1.7.1版本。 git --version 使用 yum -y update 更新一下。 再使用git clone 虽然还是会提示这个报错,但是可以克隆了。亲测有效。 git版本是1.7.1 linux版本是Linux version 2.6.32-504.el6.x86_ 阅读全文
posted @ 2019-12-09 11:33 盘思动 阅读(24061) 评论(0) 推荐(0)
摘要: public function Base64EncodeImage($ImageFile) { // 图片转化base64格式 , 图片需要在本地,有访问权限 , 相对于项目路径 if(file_exists($ImageFile) || is_file($ImageFile)){ $image_info = getimagesize($ImageFile); $image_data = frea 阅读全文
posted @ 2019-11-29 22:05 盘思动 阅读(403) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-11-29 10:40 盘思动 阅读(2) 评论(0) 推荐(0)
摘要: https://myssl.com/ssl.html 阅读全文
posted @ 2019-11-29 09:25 盘思动 阅读(520) 评论(3) 推荐(0)
摘要: # passwd runoob //设置runoob用户的密码 Enter new UNIX password: //输入新密码,输入的密码无回显 Retype new UNIX password: //确认密码 passwd: password updated successfully 阅读全文
posted @ 2019-11-26 17:44 盘思动 阅读(561) 评论(1) 推荐(0)
摘要: 默认情况下mysql会一直保留mysql-bin文件,这样到一定时候,磁盘可能会被撑满,这时候是否可以删除这些文件呢,是否可以安全删除,是个问题。 首先要说明一下,这些文件都是mysql的日志文件,如果不做主从复制的话,基本上是没用的,虽然没用,但是不建议使用rm命令删除,这样有可能会不安全,正确的 阅读全文
posted @ 2019-11-18 14:17 盘思动 阅读(8932) 评论(1) 推荐(0)
摘要: <pre>array(16) { [&quot;appid&quot;] =&gt; string(18) &quot;xxxxxxxxxxxxxxxxxxx&quot; [&quot;bank_type&quot;] =&gt; string(3) &quot;CFT&quot; [&quot;c 阅读全文
posted @ 2019-11-14 11:04 盘思动 阅读(391) 评论(0) 推荐(0)
摘要: date("Y-m-d H:i:s",strtotime("+1 month")) 下个月今天此时 $stime = strtotime('2019-11-11'); date("Y-m-d H:i:s",strtotime("+1 month",$stime)) 距离某日期开始,下个月该时间 阅读全文
posted @ 2019-11-13 17:10 盘思动 阅读(90) 评论(0) 推荐(0)
摘要: 在PHP中暂停代码执行一定时间,有两个函数可以实现,一个是sleep(),另一个是usleep(),它们参数都是一个整数值。sleep()是暂停多少秒,usleep()是暂停多少微秒。 注意:usleep()单位是微秒,1秒 = 1000毫秒 ,1毫秒 = 1000微秒,即1微秒等于百万分之一秒。 阅读全文
posted @ 2019-11-13 14:47 盘思动 阅读(456) 评论(0) 推荐(0)
摘要: array(9) { [0]=> string(16) "CallbackDemo.php" [1]=> string(8) "Demo.php" [2]=> string(9) "README.md" [3]=> string(15) "UnionClient.php" [4]=> string( 阅读全文
posted @ 2019-11-02 11:38 盘思动 阅读(742) 评论(0) 推荐(0)
上一页 1 ··· 89 90 91 92 93 94 95 96 97 ··· 133 下一页