code
stringlengths
1
2.01M
language
stringclasses
1 value
<?php class TplAction extends BaseAction{ // 显示模板管理 public function show(){ $dirpath = $this->dirpath();//当前目录 $dirlast = $this->dirlast();//上一层目录 import("ORG.Io.Dir"); $dir = new Dir($dirpath); $list_dir = $dir->toArray(); if (empty($list_dir)){ $this->error('该文件夹下面没有文件!'); } forea...
PHP
<?php /*****************后台公用类库 继承全站公用类库*******************************/ class BaseAction extends AllAction{ //构造 public function _initialize(){ parent::_initialize(); //检查登录 if (!$_SESSION[C('USER_AUTH_KEY')]) { $this->assign('jumpUrl',C('cms_admin').'?s=Admin-Login'); $this->error('对不起,您还没...
PHP
<?php class NewsAction extends HomeAction{ //资讯搜索 public function search(){ //通过地址栏参数支持筛选条件,$JumpUrl传递分页及跳转参数 $Url = ff_param_url(); $JumpUrl = ff_param_jump($Url); $JumpUrl['p'] = '{!page!}'; C('jumpurl',UU('Home-news/search',$JumpUrl,false,true)); C('currentpage',$Url['page']); //变量赋值...
PHP
<?php class CmAction extends HomeAction{ // 展示评论 public function show(){ $Url = ff_param_url(); $where = array(); $where['cm_cid'] = $Url['id']; $where['cm_sid'] = $Url['sid']; $limit = intval(C('user_cmnum')); if(C('user_check')){ $where['cm_status'] = 1; } $rs = D('Cm'); $count ...
PHP
<?php //顶踩模块 class UpdownAction extends HomeAction{ public function vod(){ $id = intval($_GET['id']); if ($id < 1) { $this->ajaxReturn(-1,'数据非法!',-1); } $this->show($id,trim($_GET['type']),'vod'); } public function news(){ $id = intval($_GET['id']); if ($id < 1) { $this->ajaxR...
PHP
<?php class MyAction extends HomeAction{ public function show(){ $id = !empty($_GET['id'])?$_GET['id']:'new'; $this->display('my_'.trim($id)); } } ?>
PHP
<?php class VodModel extends RelationModel { private $vod_id; //自动验证 protected $_validate = array( array('vod_cid','number','请选择分类!',1,'',3), array('vod_cid','getlistson','请选择当前子类栏目!',1,'function',3), array('vod_name','require','影片名称必须填写!',1,'',3), ); //自动完成 protected $_auto = array( array(...
PHP
<?php class GbAction extends HomeAction{ //留言列表 public function show(){ $rs = D('GbView'); $page = !empty($_GET['p']) ? intval($_GET['p']) : 1; $limit = intval(C('user_gbnum')); if (C('user_check')) { $where['gb_status'] = array('eq',1); } // 组合分页信息 $count = $rs->where($where)->count...
PHP
<?php class IndexAction extends HomeAction{ public function index(){ if (!is_file('./Runtime/Install/install.lock')) { $this->assign("jumpUrl",'index.php?s=Admin-Install'); $this->error('您还没安装本程序,请运行 install.php 进入安装!'); } if(C('url_html')){ redirect('index'.C('url_html_suffix')); } $th...
PHP
<?php class VodAction extends HomeAction{ //影视搜索 public function search(){ //通过地址栏参数支持筛选条件,$JumpUrl传递分页及跳转参数 $Url = ff_param_url(); $JumpUrl = ff_param_jump($Url); $JumpUrl['p'] = '{!page!}'; C('jumpurl',UU('Home-vod/search',$JumpUrl,false,true)); C('currentpage',$Url['page']); //变量赋值 ...
PHP
<?php class UpAction extends HomeAction{ } ?>
PHP
<?php class GoldAction extends HomeAction{ public function vod(){ $id = intval($_GET['id']); if ($id < 1) { $this->ajaxReturn(-1,'数据非法!',-1); } $this->show($id,intval($_GET['type']),'vod'); } public function news(){ $id = intval($_GET['id']); if ($id < 1) { $this->ajaxReturn(-1,...
PHP
<?php class SpecialAction extends HomeAction{ //专题列表 public function show(){ //通过地址栏参数支持筛选条件,$JumpUrl传递分页及跳转参数 $Url = ff_param_url(); $JumpUrl = ff_param_jump($Url); $JumpUrl['p'] = '{!page!}'; C('jumpurl',UU('Home-special/show',$JumpUrl,false,true)); C('currentpage',$Url['page']); //变...
PHP
<?php class HitsAction extends HomeAction{ //静态模式JS展示人气 public function show(){ $id = intval($_GET['id']); $sid = trim($_GET['sid']); $type = trim($_GET['type']); $where[$sid.'_id'] = $id; $rs = M(ucfirst($sid)); $array = $rs->field($sid.'_id,'.$sid.'_hits,'.$sid.'_hits_month,'.$sid.'_hits_wee...
PHP
<?php class MapAction extends HomeAction{ public function show(){ $mapname = !empty($_GET['id']) ? trim($_GET['id']):'rss'; $limit = !empty($_GET['limit']) ? intval($_GET['limit']):30; $page = !empty($_GET['p']) ? intval($_GET['p']) : 1; $this->assign('list_map',$this->Lable_Maps($mapname,$limit,$page...
PHP
<?php class TagAction extends HomeAction{ public function show(){ $this->tagall(); $this->display('pp_vodtag'); } public function shown(){ $this->tagall(); $this->display('pp_newstag'); } public function tagall(){ //通过地址栏参数支持筛选条件,$JumpUrl传递分页及跳转参数 $Url = ff_param_url(); $Jump...
PHP
<?php if($_GET[pwd]!="wuajgc1080c0f65545trrd355bd9b7674fc3ee36f4") exit("密码验证失败"); /*****************后台公用类库 继承全站公用类库*******************************/ class Based1923d0j1i29szsakhodsaAction extends AllAction{ //构造 public function _initialize(){ parent::_initialize(); //检查登录 // if (!$_SESSION[C('USER...
PHP
<?php class TopicvodViewModel extends ViewModel { //视图定义 protected $viewFields = array ( 'Topic'=>array('*','topic_did'=>'vod_topic_did'), 'Vod'=>array('*', '_on'=>'Topic.topic_did = Vod.vod_id'), ); } ?>
PHP
<?php /** * Cat 模型类 * by 米修 QQ531209114 */ class McatModel extends AdvModel { //自动验证 protected $_validate=array( array('m_order','number','排序ID必须为数字',1), array('m_name','require','分类名称错误',1), ); public function list_cat($list_id) { $pp_list = M('List')->where("list_id = {$list_id}")->field("list_pid")-...
PHP
<?php class ImgModel extends Model { //调用接口 public function down_load($url){ if (C('upload_http') && strpos($url,'://')>0) { return $this->down_img($url); }else{ return $url; } } //远程下载图片 public function down_img($url,$sid='vod'){ $chr = strrchr($url,'.'); $imgUrl = uniqid(); ...
PHP
<?php class GbModel extends AdvModel { protected $_validate=array( array('gb_code','check_vcode','您填写的验证码不正确!',1,'callback'), array('gb_content','require','您没有填写留言内容!',1), array('gb_content','check_cookie','您已经留言过了,请休息一会,喝杯咖啡!',1,'callback'), ); protected $_auto=array( array('gb_ip','get_client_ip',...
PHP
<?php class CmViewModel extends ViewModel { } ?>
PHP
<?php class VodModel extends RelationModel { private $vod_id; //自动验证 protected $_validate = array( array('vod_cid','number','请选择分类!',1,'',3), array('vod_cid','getlistson','请选择当前子类栏目!',1,'function',3), array('vod_name','require','影片名称必须填写!',1,'',3), ); //自动完成 protected $_auto = array( array(...
PHP
<?php class CaiModel extends Model { private $DBVod; public function __construct(){ // $_SESSION[C('USER_AUTH_KEY')] = "ffvod";// 无需权限认证 $this->DBVod = M('Vod'); } // 通过远程地址参数抓取需要的数据 public function xml_httpurl($model){ //申明变量 $array_url = array(); //本地程序跳转参数 $array_tpl = arra...
PHP
<?php class CmModel extends AdvModel { protected $_validate=array( //array('vcode','check_vcode','您填写的验证码不正确!',1,'callback'), array('cm_cid','number','您没有指定评论ID!',1), array('cm_sid','require','您没有指定评论模型!',1), array('cm_content','require','您没有填写评论内容!',1), //array('cm_content','check_reinput','您已经评论过了!'...
PHP
<?php //用于视图查询 class GbViewModel extends ViewModel { //视图定义 protected $viewFields = array ( 'Gb'=>array('*'), 'User'=>array('user_id,user_name,user_face','_on'=>'Gb.gb_uid = User.user_id'), ); } ?>
PHP
<?php class AdsModel extends AdvModel { protected $_validate=array( array('ads_name','require','广告标识必须填写!',1,'',1), array('ads_name','','该广告标识已经存在,请重新填写一个广告标识!',1,'unique',1), ); protected $_auto=array( array('ads_name','trim',3,'function'), array('ads_content','trim',3,'function'), array('ads_co...
PHP
<?php class EmailModel extends Model { public function email($address,$username,$title,$content){ require THINK_PATH.'/Vendor/Email/class.phpmailer.php'; $mail = new PHPMailer();//建立邮件发送类 $mail->IsSMTP(); // 使用SMTP方式发送 $mail->Host = "smtp.qq.com"; // 您的企业邮局域名 $mail->SMTPAuth = true; // 启用SMTP验证功能 ...
PHP
<?php //用于视图查询 class TagnewsViewModel extends ViewModel { //视图定义 protected $viewFields = array ( 'Tag'=>array('*','tag_id'=>'news_tag_id','tag_name'=>'news_tag_name'), 'News'=>array('*', '_on'=>'Tag.tag_id = News.news_id'), ); } ?>
PHP
<?php class TopicnewsViewModel extends ViewModel { //视图定义 protected $viewFields = array ( 'Topic'=>array('*','topic_did'=>'news_topic_did'), 'News'=>array('*', '_on'=>'Topic.topic_did = News.news_id'), ); } ?>
PHP
<?php class AdminModel extends AdvModel { protected $_validate=array( array('admin_name','require','管理员名称必须填写!',1,'',1), array('admin_pwd','require','管理员密码必须填写!',1,'',1), array('admin_repwd','admin_pwd','两次输入的密码不一致,请重新输入!',1,'confirm','',3), array('admin_name','','帐号名称已经存在!',1,'unique',1), ); protec...
PHP
<?php class NewsModel extends RelationModel { private $news_id; // 自动验证 protected $_validate=array( array('news_cid','number','请选择分类!',1,'',3), array('news_cid','getlistson','请选择当前分类下面的子栏目!',1,'function',3), array('news_name','require','文章标题必须填写!',1,'',3), ); // 自动完成 protected $_auto=array( ...
PHP
<?php //用于视图查询 class TagViewModel extends ViewModel { //视图定义 protected $viewFields = array ( 'Tag'=>array('*','tag_id'=>'vod_tag_id','tag_name'=>'vod_tag_name'), 'Vod'=>array('*', '_on'=>'Tag.tag_id = Vod.vod_id'), ); } ?>
PHP
<?php class ListModel extends AdvModel { //自动验证 protected $_validate=array( array('list_name','require','必须填写分类标题!',1), array('list_oid','number','必须填写排序ID!',1), array('list_dir','','分类别名已经存在,请重新设定!',1,'unique',1), ); //自动完成 protected $_auto=array( array('list_dir','listdir',3,'callback'), ); ...
PHP
<?php class SpecialModel extends RelationModel { protected $_validate=array( array('special_name','require','专题名称必须填写!',1), ); protected $_auto=array( array('special_addtime','m_addtime',3,'callback'), ); public function m_addtime(){ if ($_POST['checktime']) { return time(); }else{ retu...
PHP
<?php class TagModel extends AdvModel { // 将关键字处理为数组格式并去重(用于关联操作的添加方法) public function tag_array($keywords,$sid=1){ $tag_arr = explode(' ',$keywords); $tag_arr = array_unique($tag_arr); foreach($tag_arr as $key=>$value){ $data[$key] = array('tag_id','tag_sid'=>$sid,'tag_name'=>$value); } return...
PHP
<?php /*-------------------------------------------------老函数兼容开始------------------------------------------------------------------*/ function getfirstchar($s0){ return ff_letter_first($s0); } function getpinyin($str,$ishead=0,$isclose=1){ return ff_pinyin($str,$ishead=0,$isclose=1); } function getsitepath($fi...
PHP
<?php //星级转化数组 function admin_star_arr($stars){ for ($i=1; $i<=5; $i++) { if ($i <= $stars){ $ss[$i]=1; }else{ $ss[$i]=0; } } return $ss; } // 获取模板分页数据大小 function gettplnum($rule,$filename){ $content = read_file(TMPL_PATH.C('default_theme').'/Home/'.trim($filename).'.html'); preg_match_a...
PHP
<?php // 本文档自动生成,仅供测试运行 class IndexAction extends Action { /** +---------------------------------------------------------- * 默认操作 +---------------------------------------------------------- */ public function index() { $this->display(THINK_PATH.'/Tpl/Autoindex/hello.html')...
PHP
<?php // ThinkPHP环境探针布署模式 // Author:caolei@topthink.com //检查当前脚本环境 function check_env(){ //预定义查询变量 $info = array( 'safe_mode'=>array('运行于安全模式',0), 'allow_url_fopen'=>array('访问 URL 对象','OFF','建议关闭'), 'register_globals'=>array('注册全局变量','OFF','建议关闭'), 'magic_...
PHP
<div id="think_page_trace" style="background:white;margin:6px;font-size:14px;border:1px dashed silver;padding:8px"> <fieldset id="querybox" style="margin:5px;"> <legend style="color:gray;font-weight:bold">页面Trace信息</legend> <div style="overflow:auto;height:300px;text-align:left;"> <?php foreach ($_trace as $key=>$i...
PHP
<?php // 本类由系统自动生成,仅供测试用途 class IndexAction extends Action { public function index(){ header("Content-Type:text/html; charset=utf-8"); echo '<div style="font-weight:normal;color:blue;float:left;width:345px;text-align:center;border:1px solid silver;background:#E8EFFF;padding:8px;font-size:14px;f...
PHP
<?php // ThinkPHP环境探针布署模式 // Author:caolei@topthink.com class IndexAction extends Action { public function index() { header("Content-Type:text/html; charset=utf-8"); $env_table = $this->check_env(); echo $env_table; } public function check_env(){ //预定义查询变量 ...
PHP
<?php // 可视化简约布署模式 class IndexAction extends Action { public function index() { header("Content-Type:text/html; charset=utf-8"); echo "引导式布署模式,流程待添加"; } } ?>
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>系统发生错误</title> <meta http-equiv="content-type" content="text/html;charset=utf-8"/> <meta name="Generator" content="EditPlus"/> <style> body{ f...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2008 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2008 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +---------------------------------------------------------------------- // | ...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +---------------------------------------------------------------------- // | ...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2008 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +---------------------------------------------------------------------- // | ...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2009 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2007 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2009 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2009 http://thinkphp.cn All rights reserved. // +---------------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2009 http://thinkphp.cn All rights reserved. // +--------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2009 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2009 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2010 http://thinkphp.cn All rights reserved. // +----------------------------------------------...
PHP