php树型菜单类

原理简单,学过数据结构的一看就明白是什么道理了。不过今天在使用时数据中出现了子节点id(71)小于父节点id(104).导致部分子节点没被存储入数组
修改了一下

阅读全文

php小型数据库(不用mysql做网站)

php教程小型数据库教程(不用mysql教程做网站) include 'pdbm.php'; $timestart = explode(' ', microtime()); $timestart = $timestart[0] + $timestart[1]; $pdbm = new pdbm('test'); $pdbm->open(pdbm_creat | pdbm_rewd); for ($i = 0; $i < 100000; $i++) {     $pdbm->insert("key{$i}",...
阅读全文

php curl post数据的问题

 今天在做一个api增量的功能的时候出现了一个特别奇怪的问题。我用curl 想tomcat post数据的时候,tomcat竟然报错,所我post的数据没有正确或得。但是,我用curl post给我自己写的一个页面,就可以在$_post数组中获得数据。为什么会出现这种问题那?原因是在构建post 数据的数量出现问题。。。1 function api_notice_increment($url, $data) 2 { 3 $ch = curl_init(); 4 curl_setopt($ch, curlopt_header,0); 5 c...
阅读全文