当前位置:  编程技术>php
本页文章导读:
    ▪PHP小技巧搜集,每个PHPer都来露一手       这个帖子主要是所有的PHPers把自己在开发或学习中的一些经验技巧进行总结,主要就是把解决某种事情更好的方法告诉大家. 我先说几个: 1,假如你使用echo输出一个简单的语句,类似与: 代码如.........
    ▪实例(Smarty+FCKeditor新闻系统)       以下是主文件index.php的内容: 代码如下:<meta http-equiv="Content-Type" content="text/html; charset=utf-8">  <?php  require('./global.php');  require('./smarty/libs/Smarty.class.php');  require('./mysql.php');  require('.........
    ▪PHP+JS无限级可伸缩菜单详解(简单易懂)       发了几天基础的东西,今天来点稍微难的,一般在CMS系统后台中都要用到的类别管理部分的精华--无限级分类菜单,对于新手来说,这个可能有一定难度,但是今天听完我细细道来,相信.........

[1]PHP小技巧搜集,每个PHPer都来露一手
    来源: 互联网  发布时间: 2013-11-30
这个帖子主要是所有的PHPers把自己在开发或学习中的一些经验技巧进行总结,主要就是把解决某种事情更好的方法告诉大家.
我先说几个:

1,假如你使用echo输出一个简单的语句,类似与:
代码如下:
<?php 
echo "Hello World!"; 
?> 
那么你可以偷懒一下,写成这样: 
<?="Hello World!";?>  


2,str_replace()可以使用数组进行替换,比如: 
代码如下:
<? 
$string  = "Welcome To The PHPCHINA.COM ,Have A Good Time."; 
$search = array("Welcome To The PHPCHINA.COM", "Have A Good Time", "."); 
$replace   = array("PHP is very Good", "I Like It", "!"); 
$newstring = str_replace($search, $replace, $string); 
echo $string."<br />"; 
echo $newstring; 
?>
 
大家可不要把经验都藏起来哦,^_^!
多小的技巧算小技巧?
我记得以前发过这个缓存变量的函数 缓存目录为cache需要有读写权限 另外还有一个定时刷新用的函数先不写出来 否则就显得这个技巧太大了 其实和dz的刷新模式比较像
代码如下:
function getQueryCache($key){ 
        $cacFile = "cache/" . $key . ".php"; 
        if(file_exists($cacFile)){ 
                @include($cacFile); 
                return $cacValue; 
        } 
        return false; 

function setQueryCache($key, & $result){ 
        $cacFile = "cache/" . $key . ".php"; 
        $fp = fopen($cacFile, "w"); 
        if(false != $fp){ 
                fwrite($fp, "<?php\n\$cacValue = " . var_export($result, true) . "\n?>"); 
                fclose($fp); 
                return true; 
        } 
        return false; 
}


    
[2]实例(Smarty+FCKeditor新闻系统)
    来源: 互联网  发布时间: 2013-11-30
以下是主文件index.php的内容:
代码如下:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 
<?php 
require('./global.php'); 
require('./smarty/libs/Smarty.class.php'); 
require('./mysql.php'); 
require('./FCKeditor/fckeditor.php'); 
$action=$_REQUEST['action']; 
//定义一个函数用于调用FCK 
function editor($input_name, $input_value) 

global $smarty; 
$editor = new FCKeditor($input_name) ; 
$editor->BasePath   = "./FCKeditor/";//指定编辑器路径 

$editor->ToolbarSet = "Default";//编辑器工具栏有Basic(基本工具),Default(所有工具)选择 
$editor->Width      = "100%"; 
$editor->Height     = "320"; 
$editor->Value      = $input_value; 
$editor->Config['AutoDetectLanguage'] = true ; 
$editor->Config['DefaultLanguage']  = 'en' ;//语言 
$FCKeditor = $editor->CreateHtml(); 

$smarty->assign("editor", $FCKeditor);//指定区域 


switch ($action){ 

case 'addnewsview': 

        $smarty= new Smarty(); 
        $smarty->template_dir = './template'; 
        $smarty->compile_dir = './smarty/templates_c'; 
        $smarty->assign('page_title','新建新闻'); 
        $smarty->assign('actionvalue','addnews'); 
        editor('content','');//调用编辑器,并定义文本域名为content(与下面addnews中的$_REQUEST['content']对应 
        $smarty->display('addnews.htm'); 
break; 

case 'addnews': 
        $title=$_REQUEST['title']; 
        $content=$_REQUEST['content']; 
        $db=new mysql(); 
        $button=$_REQUEST['Submit']; 

        if(empty($title) || empty($content)){ 
        echo "请填写完成!<META HTTP-EQUIV=\"Refresh\" CONTENT=\"1; URL=./index.php?action=addnewsview\">"; 
        }else{ 
                $sql="insert into news values(id,'admin','$title','$content',NOW())"; 
                $db->query_exec($sql); 
        echo "操作成功!<META HTTP-EQUIV=\"Refresh\" CONTENT=\"1; URL=./index.php\">"; 
        } 
break; 

case 'editnewsview': 
        $smarty= new Smarty(); 
        $smarty->template_dir = './template'; 
        $smarty->compile_dir = './smarty/templates_c'; 
        $smarty->assign('page_title','修改新闻'); 
        $smarty->assign('actionvalue','addnews'); 
        $id=$_REQUEST['id']; 

        $query="select * from news where id=$id"; 
        $db=new mysql(); 
        $result = $db->query_exec($query); 
        $rs = $result-> fetch_assoc(); 

        $smarty->assign('title',$rs['title']); 
        //$smarty->assign('content',$rs['content']); 
        $smarty->assign('actionvalue','editnews'); 
        $smarty->assign('id',$rs['id']); 
        editor('content',$rs['content']); 
        $smarty->display('addnews.htm'); 
break; 

case 'editnews': 
        $title=$_REQUEST['title']; 
        $content=$_REQUEST['content']; 
        $id=$_REQUEST['id']; 

        $button=$_REQUEST['Submit']; 
        $db=new mysql(); 
        if ($button=='提交'){ 
                $sql="update news set title='$title',content='$content',date=NOW() where id=$id"; 
                $db->query_exec($sql); 
        echo "操作成功!<META HTTP-EQUIV=\"Refresh\" CONTENT=\"1; URL=./index.php\">"; 
        } 
break; 

case 'delnews': 
        $db=new mysql(); 
        if ($checkbox!="" or count($checkbox)!=0) { 
                for ($i=0;$i<count($checkbox);$i++){ 
                        $db->query_exec("delete from news where id='$checkbox[$i]'"); 
                } 
        } 
        echo "操作成功!<META HTTP-EQUIV=\"Refresh\" CONTENT=\"1; URL=./index.php\">"; 
break; 

default: 
        $smarty= new Smarty(); 
        $smarty->template_dir = './template'; 
        $smarty->compile_dir = './smarty/templates_c'; 
        $smarty->assign('page_title','新闻管理'); 
        $smarty->assign('actionvalue','delnews'); 

        $query="select * from news"; 
        $db=new mysql(); 
        $result = $db->query_exec($query); 

        while ($rs = $result-> fetch_assoc()) { 
                $array[]= array("id"=>$rs['id'], "title"=>$rs['title'],"date"=>$rs['date']);  
                $smarty->assign('news',$array); 
        } 

        $smarty->display('index.htm'); 


?> 

以下是模板文件index.htm的内容 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 
<title>{$page_title}</title> 

</head> 

<body> 
<p >新闻管理</p> 
<hr> 
<table width="771" height="115" border="0"> 
  <tr> 
    <td height="62"><div align="center">系统管理</div></td> 
    <td width="666" rowspan="2"><form name="form1" method="post" action=""> 
      <table width="543" border="0"> 
        <tr> 
          <td width="253">标题</td> 
          <td width="230">日期</td> 
          <td width="46">选择</td> 
        </tr> 
                {section name=news loop=$news}  
        <tr> 
          <td><a href="/blog_article/index/action/editnewsview/amp;id/{$news[news].id}.html">{$news[news].title}</a></td> 
          <td>{$news[news].date}</td> 
          <td><input name="checkbox[]" type="checkbox" id="checkbox[]" value="{$news[news].id}"></td> 
        </tr> 
                {/section} 
      </table> 
      <p> 
        <input type="submit" name="Submit" value="删除"> 
      <input name="action" type="hidden" id="action" value="{$actionvalue}"> 
          </p> 
    </form> </td> 
  </tr> 
  <tr> 
    <td width="95" height="47"><div align="center"><a href="/blog_article/index/action/addnewsview.html">添加新闻</a></div></td> 
  </tr> 
</table> 
<p > </p> 
</body> 
</html> 

以下是添加新闻的模板文件addnews.htm 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 
<link href="/blog_article/css/a.css" rel="stylesheet" type="text/css"> 
<title>{$page_title}</title> 
</head> 

<body> 
<p >新闻管理登陆 </p> 
<hr> 
<table width="771" height="501" border="0"> 
  <tr> 
    <td height="62"><div align="center">系统管理</div></td> 
    <td width="666" rowspan="2"><form name="form1" method="post" action="/blog_article/index.html"> 
      <p>标题 
          <input name="title" type="text" id="title" value="{$title}"> 
</p> 
      <p>内容:</p> 
      <p>{$editor}</p> 
      <p> 
        <input type="submit" name="Submit" value="提交">  
                <input type="hidden" name='action' value={$actionvalue}> 
                <input name="id" type="hidden" value="{$id}">  
                </p> 
    </form> 

        </td> 
  </tr> 
  <tr> 
    <td width="95" height="433"><div align="center">添加新闻</div></td> 
  </tr> 
</table> 
</body> 
</html> 


注:数据库已经在附件里面,先新建一个名为new的数据库,再把表导入
本系统用户名:admin    密码:admin
打包下载
下载此文件

    
[3]PHP+JS无限级可伸缩菜单详解(简单易懂)
    来源: 互联网  发布时间: 2013-11-30
发了几天基础的东西,今天来点稍微难的,一般在CMS系统后台中都要用到的类别管理部分的精华--无限级分类菜单,对于新手来说,这个可能有一定难度,但是今天听完我细细道来,相信以后大家就都会弄这东东了。怎么实现呢?大家先做个数据库出来先:
-- 
-- 表的结构 `cr_columninfo`
-- 
代码如下:
CREATE TABLE `cr_columninfo` ( 
  `columnid` int(4) NOT NULL auto_increment, 
  `columnfatherid` int(4) NOT NULL default '0', 
  `columnname` varchar(100) NOT NULL default '', 
  `columnadder` varchar(50) NOT NULL default '', 
  `columninputdate` date NOT NULL default '0000-00-00', 
  PRIMARY KEY  (`columnid`) 
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ; 
-- 导出表中的数据 `cr_columninfo`
-- 
INSERT INTO `cr_columninfo` (`columnid`, `columnfatherid`, `columnname`, `columnadder`, `columninputdate`) VALUES (1, 0, '影音明星', 'leehui', '2006-09-28'),
(2, 0, '校园风情', 'leehui1983', '2006-09-28'),
(3, 1, '港台明星', 'leehui', '2006-09-28'),
(4, 0, '风景图片', 'leehui1983', '2006-09-29'),
(5, 4, '浩瀚大海', 'leehui1983', '2006-09-29'),
(6, 5, '福州的海', 'leehui1983', '2006-09-29'),
(7, 2, '毕业图片', 'leehui', '2006-09-29'),
(9, 0, '体育明星', 'leehui1983', '2006-10-02'),
(10, 0, '精美壁纸', 'leehui1983', '2006-10-02'),
(11, 0, '城市风光', 'leehui1983', '2006-10-02'),
(12, 0, '卡通动漫', 'leehui1983', '2006-10-02'),
(13, 0, '游戏截图', 'leehui1983', '2006-10-02'),
(14, 0, '作者相册', 'leehui1983', '2006-10-02');

这些是测试数据,基本原理就是按照树型结构建立数据字段,核心就是栏目都有本身的ID号和父栏目的ID号,依靠这两个关系,建立树型结构,顶级栏目父ID=0,这个都好理解,现在来叙述下程序执行原理,本程序采用最为普遍的递归算法来遍历子菜单,首先,先查询出所有顶级菜单,显示在一个大表格里,没一行显示一个顶级菜单,再通过递归列出所有子菜单,子菜单处在上级菜单的所在行的下一行,且行的显示属性为不显示,通过程序动态生成的行ID号,结合JS控制行的显示与隐藏,也就是类似于微软菜单的可伸缩效果,文章最后有张图有助于大家理解,这是把生成页面的HTML复制进DW来只管演示程序的最终结果。
来看代码部分,并没有难懂的语法,请大家借助注释自己阅读,有兴趣可扩展此代码。
PHP代码如下: 
代码如下:
<html> 
<head> 
<meta http-equiv="Content-Type" c /> 
<title>类别目录树</title> 
<script type="text/javascript"> 
function ShowMenu(MenuID) 
{  
 if(MenuID.style.display=="none"){  
    MenuID.style.display="";  
 }  
 else{  
 MenuID.style.display="none";  
 }  
}  
</script> 
<link href="/blog_article/style.css" rel="stylesheet" type="text/css"> 
</head> 
<body topmargin="0" bgcolor="#EFEFE7"> 
<table width="100%" height="25" border="0" cellpadding="0" cellspacing="0" bgcolor="#739E18"> 
  <tr> 
    <td align="left"> <strong>栏目树形结构列表</strong></td> 
  </tr> 
</table> 
<?php 
     //基本变量设置  
     $GLOBALS["ID"] =1; //用来跟踪下拉菜单的ID号  
     $layer=1; //用来跟踪当前菜单的级数  
     //连接数据库  
     $Con=mysql_connect("localhost","root","7529639");  
     mysql_select_db("cr_download");  
     mysql_query("SET NAMES 'GBK'"); 
     //提取一级菜单  
     $sql="select * from cr_columninfo where columnfatherid=0";  
     $result=mysql_query($sql,$Con);  
     //如果一级菜单存在则开始菜单的显示  
     if(mysql_num_rows($result)>0) ShowTreeMenu($Con,$result,$ID);  
     //=============================================  
     //显示树型菜单函数 ShowTreeMenu($con,$result,$layer)  
     //$con:数据库连接  
     //$result:需要显示的菜单记录集  
     //$layer:需要显示的菜单的级数  
     //=============================================  
     function ShowTreeMenu($Con,$result,$layer)  
     {  
       //取得需要显示的菜单的项目数  
       $numrows=mysql_num_rows($result);  
       //开始显示菜单,每个子菜单都用一个表格来表示  
       echo "<table cellpadding='0' cellspacing='0' border='0' width='100%'>";  
      for($rows=0;$rows<$numrows;$rows++)  
      {  
        //将当前菜单项目的内容导入数组  
        $menu=mysql_fetch_array($result);  
        //提取菜单项目的子菜单记录集  
        $sql="select * from cr_columninfo where columnfatherid=$menu[columnid]";  
        $result_sub=mysql_query($sql,$Con);  
        echo "<tr>";  
        //如果该菜单项目有子菜单,则添加JavaScript onClick语句  
        if(mysql_num_rows($result_sub)>0)  
        {  
          echo "<td width='20'><img src='/blog_article/images/plus.png' border='0' > </td>";  
          echo "<td  >";  
        }  
        else{  
          echo "<td width='20'><img src='/blog_article/images/page.png' border='0'> </td>";  
          echo "<td >";  
        }  
     //如果该菜单项目没有子菜单,只显示菜单名称  
     echo $menu[columnname]; 
     echo "</td></tr>";  
     //如果该菜单项目有子菜单,则显示子菜单  
     if(mysql_num_rows($result_sub)>0)  
     {  
      //指定该子菜单的ID和style,以便和onClick语句相对应  
      echo "<tr id=Menu".$GLOBALS["ID"]++." >";  
      echo "<td width='20'> </td>";  
      echo "<td>";  
     //将级数加1  
     $layer++;  
     //递归调用ShowTreeMenu()函数,生成子菜单  
     ShowTreeMenu($Con,$result_sub,$layer);  
     //子菜单处理完成,返回到递归的上一层 
     echo "</td></tr>";  
     }  
     //子菜单处理完成,返回到递归的上一层,将级数减1  
     $layer--;  
   }  
     echo "</table>";  
  }  
?> 
</body> 
</html>

最后贴上效果图和源代码打包,希望本文对大家有所帮助^_^
下载此文件 

    
最新技术文章:
▪PHP函数microtime()时间戳的定义与用法
▪PHP单一入口之apache配置内容
▪PHP数组排序方法总结(收藏)
▪php数组排序方法大全(脚本学堂整理奉献)
▪php数组排序的几个函数(附实例)
▪php二维数组排序(实例)
▪php根据键值对二维数组排序的小例子
▪php验证码(附截图)
▪php数组长度的获取方法(三个实例)
▪php获取数组长度的方法举例
▪判断php数组维度(php数组长度)的方法
▪php获取图片的exif信息的示例代码
▪PHP 数组key长度对性能的影响实例分析
▪php函数指定默认值的方法示例
▪php提交表单到当前页面、提交表单后页面重定...
▪php四舍五入的三种实现方法
▪php获得数组长度(元素个数)的方法
▪php日期函数的简单示例代码
▪php数学函数的简单示例代码
▪php字符串函数的简单示例代码
▪php文件下载代码(多浏览器兼容、支持中文文...
▪php实现文件下载、支持中文文件名的示例代码...
▪php文件下载(防止中文文件名乱码)的示例代码
▪解决PHP文件下载时中文文件名乱码的问题
▪php数组去重(一维、二维数组去重)的简单示例
▪php小数点后取两位的三种实现方法
▪php Redis 队列服务的简单示例
▪PHP导出excel时数字变为科学计数的解决方法
▪PHP数组根据值获取Key的简单示例
▪php数组去重的函数代码示例
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3