上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
  2013年8月1日
摘要: function getLength(str) { var len = str.length; var reLen = 0; for (var i = 0; i 126) { // 全角 reLen += 2; } else { reLen++; } } return reLen;} 阅读全文
posted @ 2013-08-01 09:26 lsl8966 阅读(185) 评论(0) 推荐(0) 编辑
  2013年7月24日
摘要: 'ppc;', from array to reduce false positives * 09.03.09 - Added support for Palm OS options * 09.03.09 - Added sample .htaccess html.html and help.html files to download*/function mobile_device_detect($iphone=true,$android=true,$opera=true,$blackberry=true,$palm=true,$windows=true,$mobilered 阅读全文
posted @ 2013-07-24 17:58 lsl8966 阅读(218) 评论(0) 推荐(0) 编辑
  2013年7月23日
摘要: database_type); if(is_string($options)){ if($type == 'sqlite'){ $this -> database_file = $options; }else{ $this -> database_name = $options; } }else{ foreach($options as $option =... 阅读全文
posted @ 2013-07-23 23:36 lsl8966 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 做过PHP开发的程序员应该清楚,PHP中有很多内置的功能,掌握了它们,可以帮助你在做PHP开发时更加得心应手,本文将分享8个开发必备的PHP功能,个个都非常实用,希望各位PHP开发者能够掌握。 1、传递任意数量的函数参数 我们在.NET或者JAVA编程中,一般函数参数个数都是固定的,但是PHP允许你使用任意个数的参数。下面这个示例向你展示了PHP函数的默认参数: Php代码 // 两个默认参数的函数 function foo($arg1 = ”, $arg2 = ”) { echo “arg1: $arg1\n”; echo “arg2: $arg2\n”; } foo(‘hello’, 阅读全文
posted @ 2013-07-23 23:01 lsl8966 阅读(226) 评论(0) 推荐(0) 编辑
  2013年7月22日
摘要: function getLength(str) { var len = str.length; var reLen = 0; for (var i = 0; i 126) { // 全角 reLen += 2; } else { reLen++; } } return reLen; } 阅读全文
posted @ 2013-07-22 19:38 lsl8966 阅读(331) 评论(0) 推荐(0) 编辑
  2013年7月1日
摘要: http://www.coreseek.cn/news/7/52/ 阅读全文
posted @ 2013-07-01 21:33 lsl8966 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 下面是一些非常有用的PHP类库,相信一定可以为你的WEB开发提供更好和更为快速的方法。图表库下面的类库可以让你很简的创建复杂的图表和图片。当然,它们需要GD库的支持。pChart – 一个可以创建统计图的库。Libchart – 这也是一个简单的统计图库。JpGraph – 一个面向对象的图片创建类。Open Flash Chart – 这是一个基于Flash的统计图。RSS 解析解释RSS并是一件很单调的事情,不过幸好你有下面的类库可以帮助你方便地读取RSS的Feed。MagpieRSS – 开源的PHP版RSS解析器,据说功能强大,未验证。SimplePie – 这是一个非常快速,而且易用 阅读全文
posted @ 2013-07-01 09:08 lsl8966 阅读(196) 评论(0) 推荐(0) 编辑
  2013年6月8日
摘要: 我下载的是deb包,双击安装完之后,打开wps没有反应,重启了一下 计算机也不行。改从命令行出现如下信息:/opt/kingsoft/wps-office/office6/wps: error while loading shared libraries: libgthread-2.0.so.0: cannot open shared object file: No such file or directo解决方法:我用的是64位的系统,wps是32位编译的,所以少了一些库。sudo apt-get install ia32-libs再次打开提示缺少字体文件:下载:http://bbs.wps 阅读全文
posted @ 2013-06-08 15:19 lsl8966 阅读(199) 评论(0) 推荐(0) 编辑
  2013年6月4日
摘要: 安装方法:pear upgrade PEARsudo pear channel-discover pear.phpunit.desudo pear install --alldeps phpunit/PHPUnitpear helppear install phpunit/PHPUnit_Seleniumpear list phpunit测试程序目标程序 :Demo.php<?phpclass Demo { public function sum($a,$b) { return $a+$b; } public function subtract($a,$b){ ... 阅读全文
posted @ 2013-06-04 18:30 lsl8966 阅读(146) 评论(0) 推荐(0) 编辑
  2013年5月29日
摘要: # Virtual hostsInclude conf/extra/httpd-vhosts.conf ServerAdmin webmaster@dummy-host2.example.com DocumentRoot "/data/monitor/memcacheAdmin/" ServerName memAdmin.com ErrorLog "logs/dummy-host2.example.com-error_log" CustomLog "logs/dummy-host2.example.com-access_log" co 阅读全文
posted @ 2013-05-29 11:41 lsl8966 阅读(210) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页