制御構造
if
- 日本語説明 (if)
-
http://jp.php.net/manual/ja/language.control-structures.php#control-structures.if
- 比較演算子
-
http://jp.php.net/manual/ja/language.operators.comparison.php
文字比較
PHP tutorial(英語) には次のような字がある
<?php
if (strstr($_SERVER["HTTP_USER_AGENT"], "MSIE")) {
echo "You are using Internet Explorer<br >>";
}
?>
空文字列
かどうか調べる
$offset = $_GET['offset'];
if (strlen($offset) === 0 ) {$offset = 0;}
もっと簡単に
if ($item_cd != "" && $num != ""){
というように書ける
|