Only to find a successful way, not to find excuses for failure!
发布时间:2013-04-11 00:07:23
OS:centos 5.6 x321.添加源wget -q -O - http://www.atomicorp.com/installers/atomic | sh2.排除php5.3的包,我们只需要php5.2.17vim /etc/yum.conf exclude=*5.3.* 3.安装yum install php php-cli php-gd php-mysql php-eaccelerator \ php-zend-optimizer php-pear php-snmp php-bcma.........【阅读全文】
发布时间:2013-01-21 19:08:48
<?phpfunction rand_string($len = 16, $keyword = '') { if (strlen($keyword) > $len) {//关键字不能比总长度长 return false; } $str = ''; $chars = 'abcdefghijkmnpqrstuvwxyz23456789ABCDEFGHIJKMNPQRSTUVWXYZ'; //去掉1跟.........【阅读全文】