PHP Doku:: Throw an error, a callstack and then exit - function.apd-croak.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDas Verhalten von PHP beeinflussenAdvanced PHP debuggerAPD Funktionenapd_croak

Ein Service von Reinhard Neidl - Webprogrammierung.

APD Funktionen

<<apd_continue

apd_dump_function_table>>

apd_croak

(PECL apd 0.2-0.4)

apd_croakThrow an error, a callstack and then exit

Beschreibung

void apd_croak ( string $warning [, string $delimiter ] )

Behaves like perl's Carp::croak. Throw an error, a callstack and then exit.

Parameter-Liste

warning

The warning to throw.

delimiter

The delimiter. Default to <BR />.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #1 apd_croak() example

<?php
apd_croak
("Some Warning","<P>");
?>

Siehe auch


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
php at peous dot com
5.07.2005 21:18
A function that "ASSERTS", ie that dies if the boolean in parameter is false
ex: verify( $myDatabase->Connect() );

<?php
function verify( $bResult )
{
    if (!
bResult)
    {
        echo
"<hr><h1>ERROR</h1><hr>";
        echo
"<pre>Last call arguments:\n";
        for(
$i=0;$i<func_num_args();$i++)
        {    echo
"&rarr;";
           
print_r( func_get_arg ($i) );
            echo
"&larr;\n";
        }
        if (
sizeof($_GET))
        {    echo
"<hr>GET VARS\n";
           
print_r( $_GET );
        }
        if (
sizeof($_POST))
        {    echo
"<hr>POST VARS\n";
           
print_r( $_POST );
        }
        if (
sizeof($_SERVER))
        {    echo
"<hr>SERVER VARS\n";
           
print_r( $_SERVER );
        }
        if (
sizeof($_COOKIE ))
        {    echo
"<hr>COOKIE VARS\n";
           
print_r( $_COOKIE  );
        }
       
// Disable if not on a protected server
       
if (sizeof($_SESSION ))
        {    echo
"<hr>SESSION VARS\n";
           
print_r( $_SESSION  );
        }       
        echo
"</pre>";
        echo
"<hr>";
        if (
function_exists("apd_callstack"))
        {   
apd_croak("Error !");
        }
        else
        {    die(
1);
        }
    }
}
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)