摘要: strstr — 查找字符串的首次出现 查找 "Shanghai" 在字符串中的第一次出现,并返回字符串的剩余部分: echo strstr("I love Shanghai!","Shanghai");Shanghai! 与strchr不同的是strstr有第三个参数 strstr('abc.tx 阅读全文
posted @ 2017-01-04 18:21 歲夢灬沉浮 阅读(959) 评论(0) 推荐(0) 编辑
摘要: 前面使用了快递鸟调取数据,失败后再调取快递网的数据 新版本加入了app端的支持 下面是快递100和爱查快递api接口示例 阅读全文
posted @ 2016-12-13 09:32 歲夢灬沉浮 阅读(1775) 评论(0) 推荐(0) 编辑
摘要: 一:匿名函数 (在php5.3.0 或以上才能使用) php中的匿名函数(Anonymous functions), 也叫闭包函数(closures), 允许指定一个没有名称的函数。最常用的就是回调函数的参数值。(http://php.net/manual/zh/functions.anonymou 阅读全文
posted @ 2016-11-23 11:56 歲夢灬沉浮 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 格式: obj.call(thisObj, arg1, arg2, ...); 参数为字符 obj.apply(thisObj, [arg1, arg2, ...]); 参数为数组 例一:sub函数赋值给this 例二: 点击把#content赋值给函数中的this来改变颜色和样式 hello 点击 阅读全文
posted @ 2016-11-21 12:02 歲夢灬沉浮 阅读(141) 评论(0) 推荐(0) 编辑
摘要: MySQL数据库提供了很多函数包括: 数学函数; 字符串函数; 日期和时间函数; 条件判断函数; 系统信息函数; 加密函数; 格式化函数; 一、数学函数 数学函数主要用于处理数字,包括整型、浮点数等。 返回x的绝对值 SELECT ABS(-1) -- 返回1 返回大于或等于x的最小整数 SELEC 阅读全文
posted @ 2016-11-20 17:59 歲夢灬沉浮 阅读(160) 评论(0) 推荐(0) 编辑
摘要: js弹窗&返回值(window.open方式) test.htm<html ><head> <title></title> <script type="text/javascript"> <!-- function winOpen() { window.open("test2.php","name1 阅读全文
posted @ 2016-09-22 14:37 歲夢灬沉浮 阅读(188) 评论(0) 推荐(0) 编辑
摘要: <?php function dateBDate($date1, $date2) { // 日期1是否大于日期2 $month1 = date("m", strtotime($date1)); $month2 = date("m", strtotime($date2)); $day1 = date( 阅读全文
posted @ 2016-07-13 10:34 歲夢灬沉浮 阅读(3021) 评论(0) 推荐(0) 编辑
摘要: $msg= GrabImage($vo['url'],$vo['filename']); curl下载文件 <?php $source = "http://apkegg.mumayi.com/cooperation/2016/06/06/0/18/latiao_V1.1_mumayi_3dfc4.a 阅读全文
posted @ 2016-07-13 09:51 歲夢灬沉浮 阅读(277) 评论(0) 推荐(0) 编辑
摘要: config.php<?phpreturn 1;?>cron.phpignore_user_abort();//关掉浏览器,PHP脚本也可以继续执行.set_time_limit(0);// 通过set_time_limit(0)可以让程序无限制的执行下去$interval=60*30;// 每隔半 阅读全文
posted @ 2016-07-13 09:22 歲夢灬沉浮 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 安装环境:XAMPP;phpStorm版本10; windows 7 64bit。 XAMPP、phpStorm 都直接安装在了D盘根目录,9999m目录建在D:\xampp\htocts下,即目录工程文件夹路径为D:\xampp\htocts\9999m。在phpStorm>File>open,找 阅读全文
posted @ 2016-06-01 14:13 歲夢灬沉浮 阅读(43997) 评论(2) 推荐(5) 编辑