"; echo "isset($tireqty)".empty($tireqty)."
"; echo "isset($tireqty)".empty($tireqty)."

ホームページ >バックエンド開発 >PHPチュートリアル >html5 - 次のステートメントが php に追加され、空白のページが表示されます。ページ zhengchang を削除します。

html5 - 次のステートメントが php に追加され、空白のページが表示されます。ページ zhengchang を削除します。

WBOY
WBOYオリジナル
2016-08-18 09:16:131555ブラウズ

次のステートメントを数日間追加すると、ページが空白になります。通常は削除します
echo "isset($tireqty)".isset($tireqty)."
";
echo "isset($) nothere)".isset( $nothere)."
";
echo "isset($tireqty)".empty($tireqty)."
";
echo "isset($ nothere)".empty( $nothere)."
";

完全なコードは以下にリストされています

リーリー

// echo "isset($tireqty)".isset($tireqty)."
";
// echo "isset($nothere)".isset($nothere)."
";
// echo "isset($tireqty)".empty($tireqty)."
";
// echo "isset($nothere)".empty($nothere)."
";

リーリー

返信内容:

次のステートメントを数日間追加すると、ページが空白になります。通常は削除します
echo "isset($tireqty)".isset($tireqty)."
";
echo "isset($) nothere)".isset( $nothere)."
";
echo "isset($tireqty)".empty($tireqty)."
";
echo "isset($ nothere)".empty( $nothere)."
";

完全なコードは以下にリストされています

リーリー

// echo "isset($tireqty)".isset($tireqty)."
";
// echo "isset($nothere)".isset($nothere)."
";
// echo "isset($tireqty)".empty($tireqty)."
";
// echo "isset($nothere)".empty($nothere)."
";

リーリー

前の引用変数 $nothere が定義されていない場合は、エラーが報告されます。デバッグ モードをオンにしないと、エラーは報告されず、
isset および empty return bool 型は表示されません。表示されません

echo "isset($tireqty)"...$tireqtyが定義されていない場合、ここでの二重引用符で囲まれたissetが文字として出力されるため、エラーが発生します

error_reporting(E_ALL);
ini_set("display_errors", 1);

ページの先頭に追加

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。