- 浏览: 238955 次
- 性别:
- 来自: 北京
最新评论
-
thepastsee:
304572183股票交流 欢迎加入
实时股票 -
345161974:
很不错,我第一个接触的CSS卡片布局效果,多谢
css卡片效果
文章列表
window
http://windows.php.net/downloads/releases/archives/
rpm
http://repo.webtatic.com/yum/centos/5/SRPMS/
http://bbs.phpchina.com/thread-216769-1-2.html
<?php
function orderId($length=4) {
//$date = date('mdhis');
$date = date('mdHi');
$oid_filename = 'tmp.txt';
$oid = @file_get_contents($oid_filename);
if($oid >= str_pad('9',$length,'9')) {
$oid = ...
9个强大免费的PHP库 & 20 你应该知道的PHP库
from: http://coolshell.cn/articles/200.html
from: http://coolshell.cn/articles/455.html
1. ReCAPTCHA
reCAPTCHA
允许你的网站集成一个Advanced CAPTCHA 系统,这个系统可以帮助你阻止一些垃圾信息。可视化的CAPTCHA
同样也有一个有用的声音功能。另外,在reCAPTCHA 服务里,这个PHP库也包含了一个给 “Mailhide”
服务用的API,这个可以把你的邮件 ...
http://coolshell.cn/articles/1846.html
今天,数据库的操作越来越成为整个应用的性能瓶颈了,这点对于Web应用尤其明显。关于数据库的性能,这并不只是DBA才需要担心的事,而这更是我
们程序员需要去关注的事情。当我们去设计数据库表结构,对操作数据库时(尤其是查表时的SQL语句),我们都需要注意数据操作的性能。这里,我们不会讲过
多的SQL语句的优化,而只是针对MySQL这一Web应用最多的数据库。希望下面的这些优化技巧对你有用。
1. 为查询缓存优化你的查询
大多数的MySQL服务器都开启了查询缓存。这是提高性最有效的方法之一,而且这是被M ...
http://www.cnblogs.com/DBFocus/archive/2011/03/27/1996655.html#2121813
http://blog.csdn.net/redbednil/archive/2009/05/14/4183259.aspx
escape encodeURI 和encodeURIComponent
收藏
escape(), encodeURI()和encodeURIComponent()是在Javascript中用于编码字符串的三个常用的方法,而他们之间的异同却困扰了很多 ...
转
http://www.iteye.com/topic/1097560
最近在做一个反馈功能,把数据反馈到对方公司网站,我公司是GBK编码,对方公司是UTF-8编码。因此,我需要将GBK编码数据转换成UTF-8编码数据,这样对方网站才不会乱码。最简单的方法是将HttpClient的ContentCharset设置为utf-8;如果ContentCharset是gbk并且又不想设置为utf-8,那么就需要将数据转换成UTF-8编码再发到对方网站。
问题出现:GBK转UTF-8时,奇数个中文会乱码,偶数个中文不会乱码。三个中文
Java代码
public s ...
http://justshare.iteye.com/blog/226479
//the common event,If your brower is firefox,you should use this function instead of "window.event"
function getEvent() {
if
(document.all)
return
window.event;
//get ie event
...
转
http://blog.haohtml.com/archives/4595
MySQL索引的索引长度问题
13 Jul, 2010
in mysql
by admin
MySQL的每个单表中所创建的索引长度是有限制的,且对不同存储引擎下的表有不同的限制。查看索引可以使用show index from tbl_name命令,语法见:http://blog.haohtml.com/index.php/archives/1889
在MyISAM表中,创建组合索引时,创建的索引长度 不能超过1000,注意 ...
写购物车时遇到问题,
Fatal error
: DangdangService::addCartItem() [<a
href='dangdangservice.addcartitem'>dangdangservice.addcartitem</a>]:
The script tried to execute a method or access a property of an
incomplete object. Please ensure that the class definition
"Cart&q ...