tp框架入门

访问tp框架自带的控制器

nginx配置

    	server {
        	listen       80;
		server_name 192.168.1.129;
		root  /home/wwwroot/default;

        location ~ \.php{
            root           /home/wwwroot/default/tp5/public/;
            fastcgi_pass   unix:/tmp/php-cgi.sock;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }

        location / {
            root /home/wwwroot/default;
            index  index.html index.htm index.php;

            if (!-e $request_filename) {
                rewrite  ^(.*)$  /index.php?s=/$1  last;
                break;
            }
        }


	}

浏览器地址http://localhost

往index控制器中新增接口(application/index/control/Index.php)

<?php
namespace app\index\controller;

class Index
{
    public function index()
    {
        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="https://tajs.qq.com/stats?sId=9347272" charset="UTF-8"></script><script type="text/javascript" src="https://e.topthink.com/Public/static/client.js"></script><think id="ad_bd568ce7058a1091"></think>';
    }
	
	public function testIndex()
	{
		return "<h1>testIndex";
	}
}

浏览器地址http://localhost/index/index/testindex

注意大小写,如果url中单词跟方法名一样驼峰形式,会访问不了

如果要自己添加控制器,可以在application目录,index同级目录新增目录,这里是pone

然后仿照index目录,在pone目录中新增controller目录,controller目录新增文件,文件名随便,首字母大写,接.php后缀

namespace要注意,app\pone\controller,一个文件里面一个类,类名和文件名保持一致,就可以通过浏览器访问

http://192.168.235.129/pone/index/testindex

因为我新建的也是Index.php所以后面一样

猜你喜欢

转载自blog.csdn.net/youyudexiaowangzi/article/details/87736751
今日推荐