上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 38 下一页
摘要: 一,js方法 var arr = ["a", "b", "c"]; // js arr.indexOf("c") var result1 = arr.indexOf("c"); //返回index为2 二,jquery方法 var arr = ["a", "b", "c"]; // jquery $ 阅读全文
posted @ 2020-07-07 12:36 小猿笔记 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1. 自己写for循环 从array里去掉$tmp这个元素的值 <?php $tmp = '324'; $arr = array( '0' => '321', '1' => '322', '2' => '323', '3' => '324', '4' => '325', '5' => '326', 阅读全文
posted @ 2020-07-07 12:29 小猿笔记 阅读(505) 评论(0) 推荐(0) 编辑
摘要: $arr=array('a','b','c','d','e','f','g');//目标数组bai $i_arr=array('1','2');//要插入bai的数组 $n=2;//插入的位置 array_splice($arr,$n,0,$i_arr); print_r($arr); Array 阅读全文
posted @ 2020-07-07 12:20 小猿笔记 阅读(3357) 评论(1) 推荐(1) 编辑
摘要: 1.丢弃小数部分,保留整数部分 php: intval(7/2) js:parseInt(7/2) 2.向上取整,有小数就整数部分加1 php: ceil(7/2) js: Math.ceil(7/2) 3,四舍五入. php: round(7/2) js: Math.round(7/2) 4,向下 阅读全文
posted @ 2020-07-07 12:12 小猿笔记 阅读(181) 评论(0) 推荐(0) 编辑
摘要: mysql计算排名,获取行号rowno 学生成绩表数据 SELECT * FROM table_score ORDER BY score DESC; 获取某个学生成绩排名并计算该学生和上一名学生成绩差,是并列排名 SELECT *, (SELECT count(DISTINCT score) FRO 阅读全文
posted @ 2020-07-07 11:35 小猿笔记 阅读(297) 评论(0) 推荐(0) 编辑
摘要: use最常用在给类取别名 use还可以用在闭包函数中,代码如下 <?php function test() { $a = 'hello'; return function ($a)use($a) { echo $a . $a; }; } $b = test(); $b('world');//结果是h 阅读全文
posted @ 2020-07-07 11:29 小猿笔记 阅读(1092) 评论(0) 推荐(0) 编辑
摘要: 请问php能把函数名作为参数传递吗? 类似javascript,lua里面一样,函数名本来就是个变量,可以随时传递。 比如js可以这样写: function test(msg){ console.log(msg); } function a(b){ b(msg); } a(test); 可以。方法主 阅读全文
posted @ 2020-07-07 11:23 小猿笔记 阅读(633) 评论(0) 推荐(0) 编辑
摘要: php动态拼接变量名,可变变量,动态变量,使用花括号,使用两个$符 方式一:使用花括号,前缀部分不需要用单引号 $nums10 = 100; $count = 10; print ${'nums'.$count};//结果输出100 方式二:使用两个$符,先给key赋值最终的变量名称,后面才当成真正 阅读全文
posted @ 2020-07-07 11:08 小猿笔记 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 这不是 Cocos Creator 的入门教程,也不是TypeScript 的入门教程,这是 Cocos Creator+TypeScript 的入门教程。 前提 无论学什么技术知识,官方文档都应该是你第一个教程,所以请先至少阅读新手上路这一节 http://docs.cocos.com/creat 阅读全文
posted @ 2020-07-07 10:40 小猿笔记 阅读(1947) 评论(0) 推荐(0) 编辑
摘要: 介绍lua的日期函数常用方法及我的一个踩坑。 时间戳转日期 os.date("%Y%m%d%H",unixtime) --os.date("%Y%m%d%H",1534435200) 2018081700 日期转时间戳 指定日期的时间戳 os.time({day=17, month=8, year= 阅读全文
posted @ 2020-07-07 10:24 小猿笔记 阅读(747) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 38 下一页