上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 58 下一页
摘要: http://blog.knowsky.com/240717.htm 阅读全文
posted @ 2016-11-17 19:01 Newman·Li 阅读(116) 评论(0) 推荐(0)
摘要: http://www.phpchina.com/article-40283-2.htmlhttp://www.111cn.net/phper/php-gj/64868.htm 阅读全文
posted @ 2016-11-16 10:37 Newman·Li 阅读(150) 评论(0) 推荐(0)
摘要: CTRL+SHIFT+L | 显示所有快捷键列表(个人称之为“新手键”)CTRL+SHIFT+R 查找资源文件CTRL+SHIFT+M 查找方法自动注释:http://blog.csdn.net/whatday/article/details/51313358 阅读全文
posted @ 2016-11-14 17:17 Newman·Li 阅读(239) 评论(0) 推荐(0)
摘要: 奇怪的现象:SELECTstore_id,store_name,is_update_virtual,store_state,store_sort FROM`sto_store` as `store` WHERE `store`.store_state = '1' order bystore_s... 阅读全文
posted @ 2016-11-14 10:15 Newman·Li 阅读(840) 评论(1) 推荐(0)
摘要: 今天在写一个脚本,统计一个纯英文的文本文档txt,里面的单词出现的数量的时候呢,代码如下: 1 [thoroughness] => 1 [bleached] => 1 [tow] => 1 [inspired] => 1 [uniform... 阅读全文
posted @ 2016-11-13 21:00 Newman·Li 阅读(1046) 评论(0) 推荐(0)
摘要: Javascript对象是一个复合值:是属性或者已经命名值的集合。通过 。或者[]来引用属性。当属性值是一个函数的时候,称为方法。字符串不是对象,但是有属性?因为主要引用了字符串的属性,Javascript就会将字符串值通过调用new String()的方式... 阅读全文
posted @ 2016-11-13 17:41 Newman·Li 阅读(124) 评论(0) 推荐(0)
摘要: var s="hello,world";s.charAt(0);//"h",第一个字符s.charAt(s.length-1);//"d",最后一个字符s.substring(1,4);//"ell",第2~4个字符,**包括前面不包括后面**s.slice... 阅读全文
posted @ 2016-11-13 16:27 Newman·Li 阅读(104) 评论(0) 推荐(0)
摘要: Javascript语言核心—–Date()构造函数:用来创建日期和时间的对象。var then=new Date(2016,10,11);//**注意**月份是从0 开始,这表示2016年11月11号var later=new Date(2016,10,1... 阅读全文
posted @ 2016-11-13 13:55 Newman·Li 阅读(123) 评论(0) 推荐(0)
摘要: Javascript是一个面相对象的编程语言,但是和传统的面向对象有很大的区别。举个栗子:定义一个类来表示2D平面几何里面的一个点。这个类的实例化的对象有一个r()的方法,用来计算该点到原点的距离:function Point(x,y){ this.x=x... 阅读全文
posted @ 2016-11-13 12:21 Newman·Li 阅读(111) 评论(0) 推荐(0)
摘要: 运行原理 http://www.phpchina.com/article-40203-1.htmlPHP底层开发 可以理解为就是C的开发,那么简单地说如果我们要查看某个PHP函数的底层实现怎么看呢?需要PHP源码包:http://www.php.net/downloads.php主要目录是Ze... 阅读全文
posted @ 2016-10-21 16:29 Newman·Li 阅读(559) 评论(0) 推荐(0)
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 58 下一页