Hello World!
上一節中,我們訪問如下地址:
http://localhost/thinkphp5/public/index.php
得到了歡迎界面。
本次,我們嘗試打開以下地址:
http://127.0.0.1/thinkphp5/public/index.php/index
http://127.0.0.1/thinkphp5/public/index.php/index/Index
http://127.0.0.1/thinkphp5/public/index.php/index/Index/index
我們發現,頁面竟然沒有任何變化。是的,這就是THINKPHP,或是說任何框架都有的特點。
我們知道訪問一個地址(以后我們更多的稱為URL,比如 http://127.0.0.1/thinkphp5/public/index.php/index/Index/index 是一個URL)就會使服務器執行一段代碼,然后將結果返回給用戶。用戶訪問服務器示意圖如下:
上述三種訪問方式返回的結果相同,原因在于它們執行的都是同一段代碼。即:
~~~
<?php
namespace app\index\controller;
class Index
{
public function index()
{
echo 'hello world123!';
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>';
}//public function index(
}//class Index
~~~