PHP自訂函數實現assign()數組分配到模板及extract()變數分配到模板功能樣本

來源:互聯網
上載者:User
這篇文章主要介紹了PHP自訂函數實現assign()數組分配到模板及extract()變數分配到模板功能,可類比tp架構中模板變數分配功能,涉及php基於物件導向的數組賦值相關操作技巧,需要的朋友可以參考下

本文執行個體講述了PHP自訂函數實現assign()數組分配到模板及extract()變數分配到模板功能。分享給大家供大家參考,具體如下:

這裡類比tp架構模板變數分配與賦值操作。

extract($arr); //extract 的作用:從數組中將變數匯入到當前的符號表,鍵做變數,值做值!
compact(); // — 建立一個數組,包括變數名和它們的值

class base{  public $array;  public $key;  public $val;  public function assign($key,$val){    if(array($val)){      $this->array["$key"] = $val;    }else{      $this->array["$key"] = compact($val);    }  }  public function display($tpl){    $this->assign($this->key,$this->val);    extract($this->array);    if(file_exists($tpl)){ //模板存在就負載檔案。      include $tpl;    }  }}class indexcontroller extends base{  public function index(){    $arr = array('a'=>'aaaaaaa','b'=>array('a'=>'111111','b'=>'22222','c'=>'3333'),'c'=>'ccccccc','d'=>'dddddd','e'=>'eeeee');    $str = '我是字串';    $this->assign('arr',$arr);    $this->assign('str',$str);    $this->display('index.html');  }}$base = new base;$base->index();

您可能感興趣的文章:

PHP仿tp實現mvc架構基本設計思路與實現方法分析

yii2安裝詳細流程_php執行個體

CI架構(CodeIgniter)實現的資料庫增刪改查操作

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.