PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

Tips & Tricks | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

Chapter 18. Tips & Tricks

Blank Variable Handling

There may be times when you want to print a default value for an empty variable instead of printing nothing, such as printing " " so that table backgrounds work properly. Many would use an {if} statement to handle this, but there is a shorthand way with Smarty, using the default variable modifier.

Example 18-1. Printing   when a variable is empty


{* the long way *}

{if $title eq ""}
	 
{else}
	{$title}
{/if}


{* the short way *}

{$title|default:" "}
忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「Tips & Tricks」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | Tips & Tricks」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: