Smarty環境配置與使用入門教程 php smarty 餘國荔 smarty assign

來源:互聯網
上載者:User
本文執行個體講述了Smarty環境配置與使用方法。分享給大家供大家參考,具體如下:

下載Smarty(這裡以Smarty-2.6.26為例)。解壓下載的檔案(目錄結構還蠻複雜的)。接下來示範給大家一個安裝執行個體,看過應該會舉一反三的。

(1) 在根目錄下建立了新的目錄learn/,再在learn/裡建立一個目錄smarty/。將剛才解壓縮出來的目錄的libs/拷貝到smarty/裡,再在smarty/裡建立templates目錄,templates裡建立cache/,templates/,templates_c/, config/。

(2) 建立一個模板檔案:index.tpl,將此檔案放在learn/smarty/templates/templates目錄下,代碼如下:

<?phprequire 'smarty/libs/Smarty.class.php';$smarty = new Smarty;//設定各個目錄的路徑,這裡是安裝的重點$smarty->template_dir ="smarty/templates/templates";$smarty->compile_dir ="smarty/templates/templates_c";$smarty->config_dir = "smarty/templates/config";$smarty->cache_dir ="smarty/templates/cache";//smarty模板有快取的功能,如果這裡是true的話即開啟caching,但是會造成網頁不立即更新的問題,當然也可以通過其他的辦法解決$smarty->caching = false;$smarty->left_delimiter = "{#"; //重新定義邊界,因為預設邊界“{}“符,在html頁面中嵌入js指令檔編寫程式碼片段時使用的就是”{}“符,自訂邊界符還可以是<{ }>, {/ /} 等$smarty->right_delimiter = "#}";$hello = "Hello World!";//賦值$smarty->assign("hello",$hello);//引用模板檔案$smarty->display('index.tpl');?>

(3) 執行index.php就能看到Hello World!了。

更多關於PHP相關內容感興趣的讀者可查看本站專題:《smarty模板入門基礎教程》、《PHP模板技術總結》、《PHP數組(Array)操作技巧大全》、《PHP基於pdo操作資料庫技巧總結》、《PHP運算與運算子用法總結》、《PHP網路編程技巧總結》、《PHP基本文法入門教程》、《php物件導向程式設計入門教程》、《php字串(string)用法總結》、《php+mysql資料庫操作入門教程》及《php常見資料庫操作技巧匯總》

希望本文所述對大家基於smarty模板的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.