安装最新的phpstudy
http://phpstudy.php.cn/
如果出现apache能够启动,但是mysql不能启动的话,可能你已经装过mysql,这个时候按照下面操作即可解决
(作为管理员打开cmd)sc delete mysql 即可删除
下载thinkphp5.0
http://www.thinkphp.cn/
把下载的thinkphp5.0解压包放到phpstudy的网站根目录下,改名tp5,路径为E:\phpStudy\PHPTutorial\WWW\tp5,
在浏览器输入http://localhost/tp5/public/,如果出现页面,则说明thinkphp框架搭建成功
thinkphp开发与学习
一、URL传值
http://localhost/tp5/public/index/index/hello
http://localhost/tp5/public/index.php
http://localhost/tp5/public/index/index/index
http://localhost/tp5/public/index/hi/your_id?name=12(给方法you_id传值)
模块/控制器/操作(方法)
二、更多学习参照