Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

cat

Posição do Parâmetro Tipo Requerido cat Descrição
1 string Não empty Este é o valor para concatenar com a variável dada.

Este valor é concatenado com a variável dada.

Example 5.4. cat

index.php:

$smarty = new Smarty;
$smarty->assign('articleTitle', "Psychics predict world didn't end");
$smarty->display('index.tpl');

index.tpl:

{$articleTitle|cat:" yesterday."}

MOSTRA:

Psychics predict world didn't end yesterday.