ThinkPHP3.0主入口配置,注册、登录案例

贴一个我的项目目录,对刚接触ThinkPHP3.0的同学很有帮助的

 

此文件时入口文件index.PHP

 

[php]  view plain  copy
 print ?
  1.                   
  2. //定义一下ThinkPHP框架存放的路径  
  3. define('THINK_PATH','./ThinkPHP/');  
  4.   
  5. //定义当前的项目的名称,此处的项目可理解为模块home理解为前台部分  
  6. define('APP_NAME','protal');  
  7.    
  8. //定义项目的路径              
  9. define('APP_PATH','./protal/');  
  10.   
  11. define('APP_DEBUG', true);  
  12.   
  13. require THINK_PATH.'ThinkPHP.php';  


conf/config.php 

[php]  view plain  copy
 print ?
  1. //包含定义配置数据库连接的配置文件  
  2. $dbConf=include './config.inc.php';  
  3.   
  4. //定义项目本身常规配置  
  5. $Conf=array(  
  6.     //'配置项'=>'配置值'  
  7.   
  8.     'URL_MODEL'=>2,//2表示是URL重写模式  
  9.           
  10. );  
  11. return array_merge($dbConf,$Conf);  
  12.   
  13. ?>  


 

 

 

 

与入口文件同级的有一个配置文件config.inc.php

 

 

[php]  view plain  copy
 print ?
  1. return array(  
  2.     //'配置项'=>'配置值'  
  3.         'DB_TYPE'=>'mysql',  
  4.           
  5.         'DB_HOST'=>'localhost',  
  6.         //数据库名  
  7.         'DB_NAME'=>'think',  
  8.         //数据库用户  
  9.         'DB_USER'=>'root',  
  10.         //数据库密码  
  11.         'DB_PWD'=>'',  
  12.         //数据库端口  
  13.         'DB_PORT'=>'3306',  
  14.         //表前缀  
  15.         'DB_PREFIX'=>'t_',  
  16.           
  17. )     
  18. ?>  


控制器IndexAction.class.php

 

[php]  view plain  copy
 print ?
  1. // 本类由系统自动生成,仅供测试用途  
  2. class IndexAction extends Action {  
  3.     public function index(){  
  4.         header("Content-Type:text/html; charset=utf-8");  
  5.         $this->display("reg");  
  6.     }  
  7.   
  8.     function add(){  
  9.       
  10.           
  11.           
  12.         if(md5($_POST['verify'])!=$_SESSION['verify']){  
  13.               
  14.             $this->error("验证码错误");  
  15.         }   
  16.           
  17.           
  18.         //实例化自定义模型  M('User')实例化基础模型  
  19.         $user=D("User");  
  20.               
  21.             if($user->create()){  
  22.                   
  23.                   
  24.                     //执行插入操作,执行成功后,返回新插入的数据库的ID  
  25.                      if($user->add()){  
  26.                           
  27.                         $this->success("注册成功");  
  28.                     }else{  
  29.                           
  30.                         $this->error("注册失败");      
  31.                     }   
  32.                   
  33.               
  34.               
  35.             }else{  
  36.                 //把错误信息提示给用户看  
  37.   
  38.                   
  39.                   
  40.                 $this->error($user->getError());  
  41.   
  42.               
  43.             }  
  44.           
  45.     }  
  46.       
  47.       
  48.     //生成图片验证码  
  49.     function verify(){  
  50.     /** 
  51.      * 在thinkPHP中如何实现验证码 
  52.      *  
  53.      * ThinkPHP已经为我们提供了图像处理的类库ThinkPHP\Extend\... 
  54.      *  
  55.      * 如何导入类库? 
  56.      * 导入类库用"import(文件路径)来导入,但是注意文件的路径中的\要替换成 . 号" 
  57.      * 1)导入系统的类库  import(从library开始算起) import('ORG.Util.Image')注意大小写 
  58.      * 2)导入项目类库 import("@.ORG.Image") 我们需要在我恩的项目的Lib目录中存放    
  59.      */   
  60.         //导入图形处理类库  
  61.         import("ORG.Util.Image");  
  62.           
  63.               
  64.         //import("@.ORG.Image");  
  65.           
  66.           
  67.         //生成图形验证码  
  68.         /* 
  69.         length:验证码的长度,默认为4位数 
  70.  
  71.         mode:验证字符串的类型,默认为数字,其他支持类型有0 字母 1 数字 2 大写字母 3 小写字母 4中文 5混合(去掉了容易混淆的字符oOLl和数字01) 
  72.  
  73.         type:验证码的图片类型,默认为png  
  74.  
  75.         width:验证码的宽度,默认会自动根据验证码长度自动计算 
  76.  
  77.         height:验证码的高度,默认为22 
  78.  
  79.         verifyName:验证码的SESSION记录名称,默认为verify 
  80.  
  81.            
  82.          */  
  83.         //实现英文验证码  
  84.         image::buildImageVerify(4,1,'gif',60,22,'verify');  
  85.           
  86.           
  87.         //实现中文验证码  
  88.         //image::GBVerify();  
  89.     }  
  90.   
  91.       
  92.       
  93.   
  94. }  


 

 模型UserModel.class.php

 

[php]  view plain  copy
 print ?
  1. class UserModel extends Model{  
  2.   
  3.     //自动验证  
  4.     protected $_validate=array(  
  5.             //每个字段的详细验证内容  
  6.             array("username","require","用户名不能为空"),  
  7.             array("username","checkLength","用户名长度不符合要求",0,'callback'),  
  8.             array("password","require","密码不能为空"),  
  9.             array("password","checkLength","密码长度的要求是5~15位之间",0,'callback'),  
  10.             array("password","repassword","两次密码输入不一致",0,'confirm'),  
  11.             array("qq","require","qq必须填写"),  
  12.               
  13.                   
  14.             //array("cdate","require","时间不能为空",callback),  
  15.                   
  16.             );  
  17.       
  18.       
  19.     //自动填充  
  20.     protected $_auto=array(  
  21.               
  22.             array("password","md5",3,'function'),  
  23.             array("cdate","shijian",3,'callback'),  
  24.             array("dizhi","getIp",3,'callback'),  
  25.                   
  26.             );  
  27.       
  28.       
  29.       
  30.       
  31.       
  32.       
  33.       
  34.       
  35.         //自定义验证方法,来验证用户名的长度是否合法  
  36.         //$date形参  可以写成任意如 $AA  $bb  
  37.         function checkLength($data){  
  38.             //$data里存放的就是要验证的用户输入的字符串  
  39.             if(strlen($data)<5||strlen($data)>15){  
  40.                   
  41.                 return false;  
  42.             }else{  
  43.                   
  44.                 return true;  
  45.             }  
  46.               
  47.               
  48.         }  
  49.       
  50.   
  51.           
  52.         //返回访问者的IP地址  
  53.         function getIp(){  
  54.               
  55.             return $_SERVER['REMOTE_ADDR'];  
  56.         }  
  57.       
  58.         function shijian(){  
  59.                   
  60.             return date("Y-m-d H:i:s");  
  61.         }  
  62.       
  63.       
  64.       
  65. }  


 

 模板reg.html

 

[html]  view plain  copy
 print ?
  1. >  
  2. <html>  
  3. <head>  
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
  5. <title>注册title>  
  6. head>  
  7. <body>  
  8.     <form action="__URL__/add"  method="post" >  
  9.       <table width="407" height="424" align="center">  
  10.         <th height="95"><H2>请认真填写以下注册信息H2>th>  
  11.       <tr>  
  12.       <td><table height="273" align="center">  
  13.         <tr>  
  14.           <td width="74" align="right">用户名:td>  
  15.           <td width="304" align="left"><input type="text" name="username">td>  
  16.           tr>  
  17.         <tr>  
  18.           <td height="70" align="right">密码:td>  
  19.           <td align="left"><input type="password" name="password">td>  
  20.           tr>  
  21.         <tr>  
  22.           <td align="right">确认密码:td>  
  23.           <td align="left"><input type="password" name="repassword">td>  
  24.           tr>  
  25.         <tr>  
  26.           <td align="right">QQ:td>  
  27.           <td align="left"><input type="text" name="qq">td>  
  28.           tr>  
  29.         <tr>  
  30.           <td align="right">验证码:td>  
  31.           <td align="left"><input type="text" name="verify" >  
  32.             <img id="verify" alt="验证码" onClick="show()" src="__URL__/verify"><a href="javascript:show()">看不清楚a>td>  
  33.           tr>  
  34.         <tr>  
  35.           <td colspan="2" align="center"><input type="submit" value="提交">td>  
  36.           tr>  
  37.         table>td>  
  38.       tr>  
  39.       table>  
  40. form>  
  41. body>  
  42. html>  
  43.   
  44. <script>  
  45.   
  46.       
  47.     function show(){  
  48.         document.getElementById("verify").src="__URL__/verify/random"+Math.random();  
  49.           
  50.     }  
  51.       
  52.       
  53. script>  


 

 

如果还有不明白的地方,可以给我留言,我会详细解答您留下的问题,谢谢关注

 

 

 

 

 

目录结构如下

 

TP

--------ThinkPHP  文件夹

--------protal.php  这个文件叫protal.php

 

当运行protal.php时,会出现ThinkPHP的欢迎页面,证明已经配置成功,同时目录结果会发生变化

此时的目录为

 

TP

--------ThinkPHP  文件夹

--------protal.php  入口文件(上边那个文件)

--------protal 文件夹

 

 

生成的项目目录结构和系统目录类似,包括:

Common

项目公共文件目录,一般放置项目的公共函数

Conf

项目配置目录,项目所有的配置文件都放在这里

Lang

项目语言包目录(可选 如果不需要多语言支持 可删除)

Lib

项目类库目录,通常包括Action和Model子目录

Tpl

项目模板目录,支持模板主题

Runtime

项目运行时目录,包括Cache(模板缓存)、Temp(数据缓存)、Data(数据目录)和Logs(日志文件)子目录,如果存在分组的话,则首先是分组目录。

 

 

 

MySQL> SELECT FROM_UNIXTIME(875996580);

        -> '1997-10-04 22:23:00'

 

 

mysql> SELECT UNIXTIME_TIMESTAMP('1997-10-04 22:23:00');

        -> '875996580'

你可能感兴趣的:(Thinkphp)