摘要: /*一维数组转xml思路:循环数组每个单元,加入到xml文档节点中去*//*$arr = array('name'=> '丁三','age'=>29);function arr2xml($arr) { $simxml = new simpleXMLElement(''); // simpleXMLE... 阅读全文
posted @ 2014-11-12 11:33 王孙将归 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1 function tab(pid){ 2 var ps =['mli','news','people','tech']; 3 4 for(var i=0 ,len = ps.length;i13 14 15 军事16 ... 阅读全文
posted @ 2014-11-05 15:58 王孙将归 阅读(639) 评论(0) 推荐(0) 编辑
摘要: 1 total = $total;12 if($perpage){13 $this->perpage = $perpage;14 }15 16 if($page){17 $this->page = $p... 阅读全文
posted @ 2014-10-30 23:19 王孙将归 阅读(150) 评论(0) 推荐(0) 编辑
摘要: <?phpclass image { public static function code(){ $str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz023456789'; $code = s... 阅读全文
posted @ 2014-10-26 17:11 王孙将归 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1.model 是业务模型,数据库的增删改查都集中到model里,db = mysql::getIns(); } public function reg($data){ //db既然能被auto_Excute 说明是mysql实例 return $this->db->autoExcute($t... 阅读全文
posted @ 2014-10-17 14:28 王孙将归 阅读(199) 评论(0) 推荐(0) 编辑
摘要: class mysql extends db { private static $ins = NULL; private $conn = NULL; private $conf = array(); protected function __construct() {... 阅读全文
posted @ 2014-10-16 16:32 王孙将归 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 单例模式确保一个类只能有1个实例(new 一次),并且在类内部自动实例化,并向系统全局提供这个实例;1:要有一个私有的静态变量(以mysql类为例),用来保存这个唯一的实例1 class mysql extends db {2 private static $insance = NULL; ... 阅读全文
posted @ 2014-10-16 16:10 王孙将归 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1:迭代的效率要比递归高,代码页相对少些,所以查找家谱树推荐用迭代$area = array(array('id'=>1,'name'=>'安徽','parent'=>0),array('id'=>2,'name'=>'海淀','parent'=>7),array('id'=>3,'name'=>'... 阅读全文
posted @ 2014-10-16 12:16 王孙将归 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 1:数组可以相加,但是键名不能相等,要不然会被抛弃(不是覆盖);$x = array('a','b');$y = array(3=>'c',4=>'d');$z = $x+$y;print_r($z); 浏览器显示结果为:Array( [0] => a [1] => b [3] ... 阅读全文
posted @ 2014-10-15 16:19 王孙将归 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1 1,'name'=>'安徽','parent'=>0), 6 array('id'=>2,'name'=>'海淀','parent'=>7), 7 array('id'=>3,'name'=>'濉溪县','parent'=>5), 8 array('id'=>4,'name'=>'昌平','p... 阅读全文
posted @ 2014-10-15 16:01 王孙将归 阅读(163) 评论(0) 推荐(0) 编辑