上一页 1 ··· 75 76 77 78 79 80 81 82 83 ··· 97 下一页
摘要: php session获取不到的解决方法 因为sesson数据是存在服务器端的硬盘一般临时空间不足 /tmp/ 1 这个需要清空下系统盘就可以了2 你可以在空间充足的地方mkdir 文件夹——你可以使用的文件夹,例如:mkdir /home/username/tmp 为了是设置生效,需要设置环境变量 阅读全文
posted @ 2019-11-14 12:50 newmiracle宇宙 阅读(1163) 评论(0) 推荐(1) 编辑
摘要: 1.1 获取安装包并解压<pre>wget http://ftp.gnu.org/gnu/gcc/gcc-4.8.2/gcc-4.8.2.tar.bz2tar -jxvf gcc-4.8.2.tar.bz2</pre>1.2 下载供编译需求的依赖项这个神奇的脚本文件会帮我们下载、配置、安装依赖库,可 阅读全文
posted @ 2019-11-14 12:50 newmiracle宇宙 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 查看redis占用内存大小的方法 <pre>redis-cli auth 密码info</pre><pre># Memory used_memory:13490096 //数据占用了多少内存(字节 byte) used_memory_human:12.87M //数据占用了多少内存(带单位的,可读性 阅读全文
posted @ 2019-11-14 12:49 newmiracle宇宙 阅读(15744) 评论(0) 推荐(0) 编辑
摘要: PHP判断是否为手机端的方法 private function ismobile() { // 如果有HTTP_X_WAP_PROFILE则一定是移动设备 if (isset($_SERVER['HTTP_X_WAP_PROFILE'])) { return true; } //此条摘自TPM智能切 阅读全文
posted @ 2019-11-14 12:49 newmiracle宇宙 阅读(2912) 评论(0) 推荐(0) 编辑
摘要: PHP 打印调用函数入口地址(堆栈)<pre> private function print_stack_trace() { $array = debug_backtrace(); //print_r($array);//信息很齐全 unset($array[0]); foreach ($array 阅读全文
posted @ 2019-11-14 12:48 newmiracle宇宙 阅读(470) 评论(0) 推荐(0) 编辑
摘要: javascript获取上传图片的大小 <pre><input id="file" type="file"> <input id="Button1" type="button" value="button" onclick="check()"> <script> window.check=funct 阅读全文
posted @ 2019-11-14 12:47 newmiracle宇宙 阅读(423) 评论(0) 推荐(0) 编辑
摘要: html5 svg实现不规则形状图片触发事件<pre><!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title></head> <body><svg xmlns="http://www.w 阅读全文
posted @ 2019-11-14 12:46 newmiracle宇宙 阅读(1445) 评论(0) 推荐(0) 编辑
摘要: php imagick设置图片圆角的方法 <pre>header('Content-Type: image/png'); $image = new Imagick('http://static.codeweblog.com/uploads/user/29/58387_100.jpg');$image 阅读全文
posted @ 2019-11-14 12:46 newmiracle宇宙 阅读(1319) 评论(0) 推荐(0) 编辑
摘要: mysql group by分组查询后 查询个数2个方法随便你选 <pre>select count(distinct colA) from table1;</pre><pre>select count(*) from (select colA from table1 group by colA) 阅读全文
posted @ 2019-11-14 12:45 newmiracle宇宙 阅读(3288) 评论(0) 推荐(1) 编辑
摘要: php imagick svg转成jpg <pre> public function svgtojpg() { $image = '<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 阅读全文
posted @ 2019-11-14 12:45 newmiracle宇宙 阅读(860) 评论(0) 推荐(0) 编辑
上一页 1 ··· 75 76 77 78 79 80 81 82 83 ··· 97 下一页