thinkpp 5.1 프레임 워 크 템 플 릿 할당 과 변수 출력 예제
3147 단어 thinkphp5.1템 플 릿 할당변수 출력
Demo.php
namespace app\index\controller;
use think\Controller;
use think\facade\View;
class Demo extends Controller
{
public function test1()
{
// ,
$con = '<h3 style="color:red">PHP</h3>';
return $this->dieplay($con);
return $this->view->display($con);
return View::display($con);//
}
// :fetch()
public function test2()
{
// :assign()
//1、
$this->view->assign('name','zhang');
$this->view->assign('age',23);
//
$this->view->assign([
'sex' => ' ',
'salary' => 1200
]);
//2、array
$this->view->assign('goods',[
'id' => 1,
'name' => ' ',
'model' => 'meta10',
'price' => 3000
]);
//3、object
$obj = new \stdClass();
$obj->course = 'PHP';
$obj->lecture = 'zhang';
$this->view->assign('info',$obj);
//4、const( )
define('SITE_NAME','PHP');
//
// view ,
return $this->view->fetch();
}
}
보기 폴 더 만 들 기(application\index\view)템 플 릿 만 들 기(application\\index\view\demo\test2.html)
출력 변수:
{$name}<br>
{$age}<br>
{$sex}<br>
{$salary}<br>
<hr>
{// }
{$goods.id}<br>
{$goods.name}<br>
{$goods['model']}<br>
{$goods['price']}<br>
<hr>
{// }
{$info->course}<br>
{$info->lecture}<br>
<hr>
{// }
{$Think.const.SITE_NAME}<br>
<hr>
{// PHP }
{$Think.const.PHP_VERSION}<br>
{$Think.const.PHP_SO}<br>
<hr>
{// }
{$Think.server.php_self}<br>
{$Think.server.session.id}<br>
{$Think.server.get.name}<br>
{$Think.server.post.name}<br>
<hr>
{// }
{$Think.config.database.hostname}<br>
<hr>
{// }
{$Request.get.name}<br>
{$Request.param.name}<br>
{$Request.path}<br>
{$Request.root}<br>
{$Request.root.true}<br>
{// }
{$Request.controller}<br>
{// }
{$Request.action}<br>
{// }
{$Request.host}<br>
{// ip}
{$Request.ip}<br>
thinkpHP 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.본 고 는 ThinkPHP 프레임 워 크 를 기반 으로 한 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
thinkpp 5.1 프레임 워 크 템 플 릿 할당 과 변수 출력 예제본 고의 실례 는 thinkpphp 5.1 프레임 워 크 템 플 릿 의 값 부여 와 변수 출력 을 설명 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다. Demo.php ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.