SlideShare ist ein Scribd-Unternehmen logo
1 von 16
Why use Smarty?
 PHP is a template engine
 Separation of logic
◦ Reduced overhead in templating
What Smarty is not?
 NOT an application development
framework.
 NOT an MVC
 Smarty is the (V)iew component of
your application.
index.php index.tpl
include('Smarty.class.php');
$smarty = new Smarty;
$smarty->assign('name',
‘seth’);
$smarty->assign('address',
'45th & Harris');
$smarty->display('index.tpl');
<html>
<body>
User Information:
Name: {$name}
Address: {$address}
</body>
</html>
{assign}
index.php
$smarty->assign('name', ‘seth’);
$smarty->assign('address', '45th &
Harris');
index.tpl
Hi. My name is {$name}.
My address is {$address}.
{section}
index.php
$sangam = array(“prabha”,”lakshmi”);
$smarty->assign(“sangam”,$sangam);
index.tpl
{section name=member loop=$sangam}
{$sangam[member]}
{/section}
{foreach}
index.php
$arr = array(9 => 'Tennis', 3 => 'Swimming', 8 =>
'Coding');
$smarty->assign('myArray', $arr);
index.tpl
<ul>
{foreach from=$myArray key=k item=v}
<li>
{$k}: {$v}
</li>
{/foreach}
</ul>
{foreach}
index.php
$arr = array(9 => 'Tennis', 3 => 'Swimming', 8 =>
'Coding');
$smarty->assign('myArray', $arr);
index.tpl
<ul>
{foreach from=$myArray key=k item=v}
<li>
{$k}: {$v}
</li>
{/foreach}
</ul>
<ul>
<li>9: Tennis</li>
<li>3: Swimming</li>
<li>8: Coding</li>
</ul>
{foreach}
index.php
$smarty->assign(‘efforts', array(
array(
‘dev' => '1',
‘mnt' => '2',
‘qa' => '3'),
array(
‘dev' => ‘4',
‘mnt' => ‘5',
‘qa' => ‘6')
));
{foreach}
index.php
$smarty->assign(‘efforts', array(
array(
‘dev' => '1',
‘mnt' => '2',
‘qa' => '3'),
array(
‘dev' => ‘4',
‘mnt' => ‘5',
‘qa' => ‘6')
));
{foreach
name=outer
item=effort
from=$efforts}
{foreach
key=key
item=item
from=$effort}
{$key}: {$item} <br/>
{/foreach}
{/foreach}
Qualifier Smarty Syntax PHP Equivalent
== $a eq $b ==
!= $a neq $b !=
> $a gt $b >
< $a lt $b <
>= $a ge $b >=
<= $a le $b <=
=== $a === 0 ===
! not $a !
% $a mod $b %
Is [not] divisible by $a is not div by $b $a % $b == 0
Is [not] even $a is not even $a % 2 == 0
Is [not] even by $a is not even by $b ($a/$b)%2==0
Is [not] odd $a is not odd $a % 2 != 0
Is [not] odd by $a is not odd by $b ($a/$b)%2!=0
{if}{elseif}{else}
{if $name eq 'Blog'}
{* do something *}
{elseif $name eq $foo}
{* do something else *}
{/if}
{if is_array($foo) and count($foo) > 0}
{* do a foreach loop *}
{/if}
{capture}
{capture name=banner}
{include file='get_banner.tpl'}
{/capture}
{if $smarty.capture.banner ne ''}
<div id="banner">
{$smarty.capture.banner}
</div>
{/if}
{literal}
{literal}
<script type="text/javascript">
alert(“Hello World!”);
</script>
{/literal}
{literal}
<style type="text/css">
.container{
display:none;
}
</style>
{/literal}
{php}
{php}
global $foo, $bar;
if($foo == $bar){
echo 'This will be sent to browser';
}
$this->assign(‘flavor',‘Chocolate');
{/php}
{$flavor} is my fav ice cream :-)
AND
 We are done…

Weitere ähnliche Inhalte

Was ist angesagt?

PHP and Rich Internet Applications
PHP and Rich Internet ApplicationsPHP and Rich Internet Applications
PHP and Rich Internet Applications
elliando dias
 
Gilette 3 final ad
Gilette 3 final adGilette 3 final ad
Gilette 3 final ad
valagna
 
jQuery: out with the old, in with the new
jQuery: out with the old, in with the newjQuery: out with the old, in with the new
jQuery: out with the old, in with the new
Remy Sharp
 

Was ist angesagt? (20)

Difference between mysql_fetch_array and mysql_fetch_assoc in PHP
Difference between mysql_fetch_array and mysql_fetch_assoc in PHPDifference between mysql_fetch_array and mysql_fetch_assoc in PHP
Difference between mysql_fetch_array and mysql_fetch_assoc in PHP
 
4. CodeIgniter Greeting
4. CodeIgniter Greeting4. CodeIgniter Greeting
4. CodeIgniter Greeting
 
WordPress Theme Design and Development Workshop - Day 3
WordPress Theme Design and Development Workshop - Day 3WordPress Theme Design and Development Workshop - Day 3
WordPress Theme Design and Development Workshop - Day 3
 
Oop php 5
Oop php 5Oop php 5
Oop php 5
 
Little Brown Bat by Elaine
Little Brown Bat by ElaineLittle Brown Bat by Elaine
Little Brown Bat by Elaine
 
Learning Perl 6 (NPW 2007)
Learning Perl 6 (NPW 2007)Learning Perl 6 (NPW 2007)
Learning Perl 6 (NPW 2007)
 
WordPress: From Antispambot to Zeroize
WordPress: From Antispambot to ZeroizeWordPress: From Antispambot to Zeroize
WordPress: From Antispambot to Zeroize
 
TerminalでTwitter
TerminalでTwitterTerminalでTwitter
TerminalでTwitter
 
6. CodeIgniter copy2
6. CodeIgniter copy26. CodeIgniter copy2
6. CodeIgniter copy2
 
XQDT - XQuery Getting Momentum in Eclipse
XQDT - XQuery Getting Momentum in EclipseXQDT - XQuery Getting Momentum in Eclipse
XQDT - XQuery Getting Momentum in Eclipse
 
Drupal Development (Part 2)
Drupal Development (Part 2)Drupal Development (Part 2)
Drupal Development (Part 2)
 
var, let in SIL
var, let in SILvar, let in SIL
var, let in SIL
 
PHP and Rich Internet Applications
PHP and Rich Internet ApplicationsPHP and Rich Internet Applications
PHP and Rich Internet Applications
 
Gilette 3 final ad
Gilette 3 final adGilette 3 final ad
Gilette 3 final ad
 
Php if
Php ifPhp if
Php if
 
Wp query
Wp queryWp query
Wp query
 
jQuery: out with the old, in with the new
jQuery: out with the old, in with the newjQuery: out with the old, in with the new
jQuery: out with the old, in with the new
 
Migrare da symfony 1 a Symfony2
 Migrare da symfony 1 a Symfony2  Migrare da symfony 1 a Symfony2
Migrare da symfony 1 a Symfony2
 
Smelling your code
Smelling your codeSmelling your code
Smelling your code
 
5. hello popescu
5. hello popescu5. hello popescu
5. hello popescu
 

Andere mochten auch (7)

Mustache
MustacheMustache
Mustache
 
Smartt presentation
Smartt presentationSmartt presentation
Smartt presentation
 
How to Use PHP Smarty Template
How to Use PHP Smarty TemplateHow to Use PHP Smarty Template
How to Use PHP Smarty Template
 
PHPTAL with CakePHP
PHPTAL with CakePHPPHPTAL with CakePHP
PHPTAL with CakePHP
 
Smarty Template Engine
Smarty Template EngineSmarty Template Engine
Smarty Template Engine
 
Opsiyonlar
OpsiyonlarOpsiyonlar
Opsiyonlar
 
Smarty
SmartySmarty
Smarty
 

Ähnlich wie Smarty

Who Needs Ruby When You've Got CodeIgniter
Who Needs Ruby When You've Got CodeIgniterWho Needs Ruby When You've Got CodeIgniter
Who Needs Ruby When You've Got CodeIgniter
ciconf
 
R57shell
R57shellR57shell
R57shell
ady36
 

Ähnlich wie Smarty (20)

Tidy Up Your Code
Tidy Up Your CodeTidy Up Your Code
Tidy Up Your Code
 
Daily notes
Daily notesDaily notes
Daily notes
 
Zero to SOLID
Zero to SOLIDZero to SOLID
Zero to SOLID
 
Simple Ways To Be A Better Programmer (OSCON 2007)
Simple Ways To Be A Better Programmer (OSCON 2007)Simple Ways To Be A Better Programmer (OSCON 2007)
Simple Ways To Be A Better Programmer (OSCON 2007)
 
Who Needs Ruby When You've Got CodeIgniter
Who Needs Ruby When You've Got CodeIgniterWho Needs Ruby When You've Got CodeIgniter
Who Needs Ruby When You've Got CodeIgniter
 
Smarty Template
Smarty TemplateSmarty Template
Smarty Template
 
Smarty Template
Smarty TemplateSmarty Template
Smarty Template
 
Modern Web Development with Perl
Modern Web Development with PerlModern Web Development with Perl
Modern Web Development with Perl
 
Framework
FrameworkFramework
Framework
 
Why is crud a bad idea - focus on real scenarios
Why is crud a bad idea - focus on real scenariosWhy is crud a bad idea - focus on real scenarios
Why is crud a bad idea - focus on real scenarios
 
Let's write secure Drupal code! Drupal MountainCamp 2019
Let's write secure Drupal code! Drupal MountainCamp 2019Let's write secure Drupal code! Drupal MountainCamp 2019
Let's write secure Drupal code! Drupal MountainCamp 2019
 
laravel tricks in 50minutes
laravel tricks in 50minuteslaravel tricks in 50minutes
laravel tricks in 50minutes
 
50 Laravel Tricks in 50 Minutes
50 Laravel Tricks in 50 Minutes50 Laravel Tricks in 50 Minutes
50 Laravel Tricks in 50 Minutes
 
PHP POWERPOINT SLIDES
PHP POWERPOINT SLIDESPHP POWERPOINT SLIDES
PHP POWERPOINT SLIDES
 
テストデータどうしてますか?
テストデータどうしてますか?テストデータどうしてますか?
テストデータどうしてますか?
 
R57shell
R57shellR57shell
R57shell
 
You're Doing it Wrong - WordCamp Orlando
You're Doing it Wrong - WordCamp OrlandoYou're Doing it Wrong - WordCamp Orlando
You're Doing it Wrong - WordCamp Orlando
 
Php
PhpPhp
Php
 
HTML::FormHandler
HTML::FormHandlerHTML::FormHandler
HTML::FormHandler
 
PHPCon 2016: PHP7 by Witek Adamus / XSolve
PHPCon 2016: PHP7 by Witek Adamus / XSolvePHPCon 2016: PHP7 by Witek Adamus / XSolve
PHPCon 2016: PHP7 by Witek Adamus / XSolve
 

Kürzlich hochgeladen

Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Kürzlich hochgeladen (20)

Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Third Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxThird Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 

Smarty