What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
I template WAP/WML richiedono header php di tipo Content-Type che deve essere passato insieme al template. Il modo più semplice per farlo sarebbe scrivere una funzione utente che stampi l'header. Tuttavia, se usate il caching, questo sistema non funziona, per cui lo faremo con il tag insert (ricordate che i tag insert non vanno in cache!). Assicuratevi che nulla sia inviato in output al browser prima del template, altrimenti l'header non potrà essere spedito.
Example 18.6. usare insert per scrivere un header Content-Type WML
<?php // assicuratevi che apache sia configurato per le estensioni .wml! // mettete questa funzione da qualche parte nell'applicazione, oppure // in Smarty.addons.php function insert_header($params) { // la funzione si aspetta un parametro $content if (empty($params['content'])) { return; } header($params['content']); return; } ?>
il template deve iniziare con il tag insert:
{insert name=header content="Content-Type: text/vnd.wap.wml"} <?xml version="1.0"?> <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml"> <!-- begin new wml deck --> <wml> <!-- begin first card --> <card> <do type="accept"> <go href="#two"/> </do> <p> Welcome to WAP with Smarty! Press OK to continue... </p> </card> <!-- begin second card --> <card id="two"> <p> Pretty easy isn't it? </p> </card> </wml>