摘要: 1、生成3位随机字符串 <?php $str = randStr(3); echo $str; function randStr($i) { $str = "abcdefghijklmnopqrstuvwxyz0123456789"; $finalStr = ""; for ($j = 0; $j 阅读全文
posted @ 2018-10-16 09:57 PHPer_Cody 阅读(307) 评论(0) 推荐(0)
摘要: 数据库导出excel <?php $filename = "info.xls"; //先定义一个excel文件 header("Pragma: public"); header("Expires: 0"); header("Cache-Control:must-revalidate, post-ch 阅读全文
posted @ 2018-10-16 09:55 PHPer_Cody 阅读(277) 评论(0) 推荐(0)
摘要: 1、PHP的数据类型转换属于强制转换,允许转换的PHP数据类型有: (int)、(integer):转换成整形 (float)、(double)、(real):转换成浮点型 (string):转换成字符串 (bool)、(boolean):转换成布尔类型 (array):转换成数组 (object) 阅读全文
posted @ 2018-10-16 09:54 PHPer_Cody 阅读(173) 评论(0) 推荐(0)
摘要: 1、纯数字验证码 1、新建一个captcha.php <?php //设置session,必须处于脚本最顶部 session_start(); $image = imagecreatetruecolor(100, 30); //1>设置验证码图片大小的函数 //设置验证码颜色 imagecolora 阅读全文
posted @ 2018-10-16 09:48 PHPer_Cody 阅读(577) 评论(0) 推荐(0)
摘要: 随机红包分配算法 1、数值波动大 header("Content-Type: text/html;charset=utf-8");//输出不乱码,你懂的 $total=10;//红包总额 $num=8;// 分成8个红包,支持8人随机领取 $min=0.01;//每个人最少能收到0.01元 for( 阅读全文
posted @ 2018-10-16 09:44 PHPer_Cody 阅读(235) 评论(0) 推荐(0)
摘要: 判断目录是否存在,不存在则循环创建 $path_complete ="qrcodes/online/complete/"; if(!file_exists($path_complete)){ //file_exists检测目录或文件是否存在 mkdir($path_complete,0777,tru 阅读全文
posted @ 2018-10-16 09:43 PHPer_Cody 阅读(330) 评论(0) 推荐(0)
摘要: 1、下载PHP Memcache 扩展,并通过命令安装。 2、在php.ini 当中填上这句话:extension="php_memcache.dll" 3、在phpinfo()下查看,是否引用了memcache扩展 1、下载PHP Memcache 扩展,并通过命令安装。 2、在php.ini 当 阅读全文
posted @ 2018-10-12 16:23 PHPer_Cody 阅读(416) 评论(0) 推荐(0)
摘要: Memcache时一个简洁的key-value存储(内存、缓存)数据库。 安装: linux:http://www.runoob.com/memcached/memcached-install.html windows:http://www.runoob.com/memcached/window-i 阅读全文
posted @ 2018-10-12 16:21 PHPer_Cody 阅读(136) 评论(0) 推荐(0)
摘要: redis和memecache的不同在于 1 、Redis不仅仅支持简单的k/v类型的数据,同时还提供list,set,zset,hash等数据结构的存储。 memcache只支持k/v类型的数据。 2 、Redis支持数据的备份,即master-slave模式的数据备份。memcache不支持。 阅读全文
posted @ 2018-10-12 16:20 PHPer_Cody 阅读(144) 评论(0) 推荐(0)
摘要: 1、Window 下安装 下载地址:https://github.com/MSOpenTech/redis/releases。 Redis 支持 32 位和 64 位。这个需要根据你系统平台的实际情况选择,这里我们下载 Redis-x64-xxx.zip压缩包到 C 盘,解压后,将文件夹重新命名为  阅读全文
posted @ 2018-10-12 16:20 PHPer_Cody 阅读(135) 评论(0) 推荐(0)