11 2019 档案
摘要:public function Base64EncodeImage($ImageFile) { // 图片转化base64格式 , 图片需要在本地,有访问权限 , 相对于项目路径 if(file_exists(ImageFile)){ ImageFile); $image_data = frea
阅读全文
摘要:https://myssl.com/ssl.html
阅读全文
摘要:# passwd runoob //设置runoob用户的密码 Enter new UNIX password: //输入新密码,输入的密码无回显 Retype new UNIX password: //确认密码 passwd: password updated successfully
阅读全文
摘要:默认情况下mysql会一直保留mysql-bin文件,这样到一定时候,磁盘可能会被撑满,这时候是否可以删除这些文件呢,是否可以安全删除,是个问题。 首先要说明一下,这些文件都是mysql的日志文件,如果不做主从复制的话,基本上是没用的,虽然没用,但是不建议使用rm命令删除,这样有可能会不安全,正确的
阅读全文
摘要:<pre>array(16) { ["appid"] => string(18) "xxxxxxxxxxxxxxxxxxx" ["bank_type"] => string(3) "CFT" ["c
阅读全文
摘要:date("Y-m-d H:i:s",strtotime("+1 month")) 下个月今天此时 stime)) 距离某日期开始,下个月该时间
阅读全文
摘要:在PHP中暂停代码执行一定时间,有两个函数可以实现,一个是sleep(),另一个是usleep(),它们参数都是一个整数值。sleep()是暂停多少秒,usleep()是暂停多少微秒。 注意:usleep()单位是微秒,1秒 = 1000毫秒 ,1毫秒 = 1000微秒,即1微秒等于百万分之一秒。
阅读全文
摘要:array(9) { [0]=> string(16) "CallbackDemo.php" [1]=> string(8) "Demo.php" [2]=> string(9) "README.md" [3]=> string(15) "UnionClient.php" [4]=> string(
阅读全文
摘要://请修改变量p的正则表达式,使他能够匹配str中的姓名 str = "name:steven jobs"; preg_match(str, match);Array ( [0] => name:steven jobs [1] => steven jobs ) //??????
阅读全文
摘要:array_slice 分割数组, 效果相当于 substr 类似字符串操作
阅读全文
摘要:然后vim /etc/profile,在最下面添加 export PATH=$PATH: 后面跟上node下bin目录的路径 立即生效 sudo apt-get install nodejs // 安装 OK!安装成功!
阅读全文