간단한 객체 사용

객체 선언은 변수 선언과 동일하며 할당을 통해 선언됩니다

test.php 파일 수정:

<?php
require "./libs/Smarty.class.php";
$smarty = new Smarty;
class Person{
    public $name="smile";
    public $age=25;
}
$person=new Person();
$smarty->assign('address',$person);
$smarty->display('./templates/test.html');

test.html 파일 수정:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>test</title>
</head>
<body>
<!--html的注释-->
{*smarty模板的注释*}
我叫{$address->name}今年{$address->age}岁<br>
</body>
</html>

실행 화면은 다음과 같습니다.

微信图片_20180312153413.png

지속적인 학습
||
<?php echo "对象的使用";
  • 코스 추천
  • 코스웨어 다운로드
현재 코스웨어를 다운로드할 수 없습니다. 현재 직원들이 정리하고 있습니다. 앞으로도 본 강좌에 많은 관심 부탁드립니다~