转载请注明出处:http://blog.csdn.net/iwanghang/article/details/56844460
觉得博文有用,请点赞,请评论,请关注,谢谢!~
转载请注明出处:http://blog.csdn.net/iwanghang/article/details/56844460
觉得博文有用,请点赞,请评论,请关注,谢谢!~
觉得博文有用,请点赞,请评论,请关注,谢谢!~
现在很多公司企业招聘,直接要求会使用thinkPhp框架,或许你更喜欢原生,但是不可以否认框架开发的效率。
好的,让我们来一起学习学习ThinkPHP5.0吧~~
我这边使用ThinkPHP5.0.5完整版作为练习版本~~
下载地址1:http://www.thinkphp.cn/down.html
下载地址2:http://download.csdn.net/detail/iwanghang/9763145 (推荐这里下载,官网下载我失败了,我从别的地方找到的版本)入口文件:
配置文件:
数据库配置:
当你在database.php配置好你的数据库信息后,就可以在\application\index\controller\index.php中进行数据库操作,参考下面的代码:
(被注释的代码,看不懂没有关系,我们下一篇博文继续学习~)
<?php /** * namespace 命名空间 */ namespace app\index\controller; use think\Controller; use think\Db; class Index extends Controller { public function index($name = 'iwanghang') { echo $name.'<br>'; print_r($this->request->param()); // http://localhost:8888/myPhpDemo/ThinkPhp5.0.5/ThinkPHP_full_v5.0.5/public/index/index/index/aa/11/bb/22/cc/33 // 上面的连接的打印结果:Array ( [aa] => 11 [bb] => 22 [cc] => 33 ) /** * 查询users表信息并打印 */ $data = Db::name('users')->find(); print_r($data); // $this->aasign('data',$data); // $this->aasign('name',name); // return $this->fetch(); return '<style type="text/css">*{ padding: 0; margin: 0; } .think_default_text{ padding: 4px 48px;} a{color:#2E5CD5;cursor: pointer;text-decoration: none} a:hover{text-decoration:underline; } body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px} h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; } p{ line-height: 1.6em; font-size: 42px }</style><div style="padding: 24px 48px;"> <h1>:)</h1><p> ThinkPHP V5<br/><span style="font-size:30px">十年磨一剑 - 为API开发设计的高性能框架</span></p><span style="font-size:22px;">[ V5.0 版本由 <a href="http://www.qiniu.com" target="qiniu">七牛云</a> 独家赞助发布 ]</span></div><script type="text/javascript" src="http://tajs.qq.com/stats?sId=9347272" charset="UTF-8"></script><script type="text/javascript" src="http://ad.topthink.com/Public/static/client.js"></script><thinkad id="ad_bd568ce7058a1091"></thinkad>'; } }
转载请注明出处:http://blog.csdn.net/iwanghang/article/details/56844460
欢迎移动开发爱好者交流
沈阳或周边城市公司有意开发Android,请与我联系
联系方式
微信:iwanghang
QQ:413711276
邮箱:iwanghang@qq.com
沈阳或周边城市公司有意开发Android,请与我联系
联系方式
微信:iwanghang
QQ:413711276
邮箱:iwanghang@qq.com
觉得博文有用,请点赞,请评论,请关注,谢谢!~
作者:iwanghang 发表于2017/2/24 16:49:58 原文链接
阅读:231 评论:0 查看评论