文章列表

PHP 显示页面执行时间

,
之前有个版本:http://soulteary.com/2012/02/07/php-show-run-time.html现在来一个更加迷你的版本.. 阅读全文

PHP 统计重复内容

, ,
PHP 统计重复内容 <?php $array=array(1,2,3,4,5,6,8,5,2,3,6,3,5,2,3,6,5,2,2); print_r($array); echo '<hr>'; $b=array_count_values($array);//统计重复值 foreach($b as $key=>$value){ if($value>1){ echo '重复值'.&# 阅读全文

PHP MySQL 操作类

, ,
没仔细测试,回头到学校再说吧。 阅读全文

jQuery 操作 CheckBox 例子

, , ,
一个不错的例子,包含了jQuery操作CheckBox的例子。 阅读全文