smarty @Wiki

replace

最終更新:

匿名ユーザー

- view
だれでも歓迎! 編集

replace

パラメータの位置 型? 必須 デフォルト 概要
1 string? Yes n/a 置換するための文字列
2 string? Yes n/a この文字列に置換する

変数に対して正規表現を用いないシンプルな置換を行います。


例 5-15. replace

<?php
$smarty = new Smarty;
$smarty->assign('articleTitle', "Child's Stool Great for Use in Garden.");
$smarty->display('index.tpl');
?>
index.tpl : 
{$articleTitle}
{$articleTitle|replace:"Garden":"Vineyard"}
{$articleTitle|replace:" ":" "}
出力 : 
Child's Stool Great for Use in Garden.
Child's Stool Great for Use in Vineyard.
Child's Stool Great for Use in Garden.
ウィキ募集バナー