wunderground.com APIを使用して天気ページを設定しています。とにかく、私は次のことをしたい:
の変数$weather
が に等しいClear
、画像を表示したい。
私はこれを試しました:
if ($weather=="Clear") echo <img src="http://example.org/clear.gif" alt="Clear"/>
代わりに何をする必要がありますか?
これを試して
if ($weather=="Clear") echo '<img src="http://example.org/clear.gif" alt="Clear"/>';
試したコードはERRORをレンダリングします。HTML テキストと任意の文字列を引用符で囲む必要がありecho
ます。
if ($weather=="Clear") echo '<img src="http://example.org/clear.gif" alt="Clear"/>'
残り、改善するものは他にありません:)
if ($weather==="Clear")
echo "<img src=\"http://example.org/clear.gif\" alt=\"Clear\"/>";
echo '<img src="http://example.org/clear.gif" alt="Clear"/>';
また
echo "<img src='http://example.org/clear.gif' alt='Clear' />";
if ($weather=="Clear") echo "<img src=\"http://example.org/clear.gif\" alt=\"Clear\"/>";
また
if ($weather==="Clear") echo '<img src="http://example.org/clear.gif" alt="Clear"/>';
また
if ($weather==="Clear") echo <<<ABC
<img src="http://example.org/clear.gif" alt="Clear"/>
ABC;
等々。
条件付きで HTML をレンダリングするために、私はしばしば php タグを使用します...
if($weather === "Clear") {?>
<img src="http://example.org/clear.gif" alt="Clear"/>
<?php}