哪位大神幫我看看
IndexController.class.php的代碼如下:
<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
??? public function index(){s
? ??? ??? ?$this->display('index');
? ??? ??? ?$arr='china';
? ??? ??? ?$this->assign('me',$arr);
??? }
}
View/index/index.html代碼如下:
<body>
hello
{$me}
</body>
為何最后總是只輸出hello呢?$me無法輸出,,
2016-06-02
順序反了吧,應該是
? ? ? ? ? ?
? ??? ??? ?$arr='china';
? ??? ??? ?$this->assign('me',$arr);
????????????$this->display('index');