0

コードにエラーメッセージを表示すると同時に、ページのコンテンツを削除したい

例えば。

<?
echo 'welcome';
if (login==0)
{
    error("you can't access to this page");
}
content, content, content, content, content, content, content, content, content, content
ect.......
?>

出力

you can't access to this page

たとえば、すべてのコンテンツを削除しますが、エラーが発生します(「このページにアクセスできません」)。

4

2 に答える 2

1

exit();if ステートメント内に追加します。あなたの例を使用して:

<?
echo 'welcome';
if (login==0)
{
    error("you can't access to this page");
    exit();
}
content, content, content, content, content, content, content, content, content, content
ect.......
?>
于 2012-08-03T20:36:51.713 に答える
0

Matt が提供するものも使用できます。別の方法を次に示します。

<?
echo 'welcome';
if(login==0) {
  error("you can't access to this page");
} else {
?>
content, content, content, content, content, content, content, content, content, content
<?php
}
?>
于 2012-08-03T20:40:21.807 に答える