smarty模板引擎從php中擷取資料的方法,smarty模板_PHP教程

來源:互聯網
上載者:User

smarty模板引擎從php中擷取資料的方法,smarty模板


本文執行個體講述了smarty模板引擎從php中擷取資料的方法。分享給大家供大家參考。具體如下:

smarty可以分配($smarty->assign)的變數類型:所有php支援的資料類型——基礎資料型別 (Elementary Data Type)、複合資料型別、特殊資料類型(具體見smarty相關手冊)。

操作/顯示檔案:index.php
複製代碼 代碼如下:<?php
//建立smarty對象
require_once("./libs/Smarty.class.php");
$smarty = new Smarty();
$smarty->assign("aa","hello word");//分配字串
$smarty->assign("bb",123);//分配整型
$smarty->assign("cc",90.8);//分配float型,浮點型
$smarty->assign("dd",true);//分配字串
//分配數組,數組一般從資料庫取出,這裡直接給數組
$arr1 = array("北京","上海","廣州");//索引數組
$smarty->assign("arr1",$arr1);//分配索引數組

$arr2 = array("city1"=>"北京","city2"=>"上海","city3"=>"廣州");//關聯陣列
$smarty->assign("arr2",$arr2);//分配關聯陣列

$arr3 = array(array("北京","上海","廣州"),array("關羽","張飛","美女"));
$smarty->assign("arr3",$arr3);

$arr4 = array("aa"=>array("北京","上海","廣州"),"bb"=>array("關羽","張飛","美女"));
$smarty->assign("arr4",$arr4);

//物件類型
class Master{
public $name;
public $address;
}
$master = new Master();
$master->name="百度";
$master->address = "中關村";
class Dog{
public $name;
public $age;
public $color;
public $arr;
public $master;
function __construct($name,$age,$color,$arr){
$this->name = $name;
$this->age = $age;
$this->color = $color;
$this->arr = $arr;
}
}
$dog = new Dog("小狗",4,"金黃色",$arr2);
$dog->master = $master;
$smarty->assign("dog",$dog);

$smarty->display("index.tpl");
?>

模板檔案:index.tpl
複製代碼 代碼如下:

smarty變數操作


取字串:{$aa}


取整數:{$bb}


取浮點型:{$cc}


取布爾值:{$dd}


取數組(索引數組):{$arr1[0]}--{$arr1[1]}--{$arr1[2]}


取數組(關聯陣列):{$arr2.city1}--{$arr2.city2}--{$arr2.city3}


取二組數組(索引,取單個):{$arr3[0][0]}


取二組數組(索引,遍曆全部):


取二維數組(關聯):{$arr4.aa[2]}


取二維數組(關聯、遍曆):


取對象(普通屬性):{$dog->name}


取對象(數組屬性):{$dog->arr.city1}


取對象(對象屬性):{$dog->master->name}


希望本文所述對大家的php程式設計有所協助。

http://www.bkjia.com/PHPjc/946752.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/946752.htmlTechArticlesmarty模板引擎從php中擷取資料的方法,smarty模板 本文執行個體講述了smarty模板引擎從php中擷取資料的方法。分享給大家供大家參考。具體如下:...

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.