次のステートメントを数日間追加すると、ページが空白になります。通常は削除します
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);
ページの先頭に追加