tp5视图小总结
Junely 2018-12-05 phpthinkphp5
- 控制器部分
<?php
namespace app\admin\controller;
class Index extends Base
{
public function index()
{
$this->view->data = [
[
'name' => '555',
'age' => '666',
]
];
$viewdata = [
'first' => 1,
'two' => 2,
'three' => 3,
'four' => [
[
'name' => '111',
'age' => '222',
]
],
];
return view('index',$viewdata);
}
}
- 视图部分

- 页面输出

