PHP
downloads | documentation | faq | getting help | mailing lists | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

pack> <highlight_string
Last updated: Fri, 14 Nov 2008

view this page in

ignore_user_abort

(PHP 4, PHP 5)

ignore_user_abortStellt ein, ob der Verbindungsabbruch eines Clients die Skript-Ausführung abbrechen soll

Beschreibung

int ignore_user_abort ([ string $setting ] )

Setzt den Wert dafür, ob der Abbruch einer Client-Verbindung die weitere Abarbeitung eines Skripts beenden soll.

Parameter-Liste

setting

Falls dieser Parameter nicht angegeben wird, gibt diese Funktion nur die akuelle Einstellung zurück.

Rückgabewerte

Gibt das vorhergehende Setting als Wahrheitswert (boolean) zurück.

Beispiele

Beispiel #1 Ein ignore_user_abort()-Beispiel

<?php
// Ignoriere Abbruch durch den Benutzer und erlaube dem Skript weiterzulaufen
ignore_user_abort();
set_time_limit(0);

echo 
'Teste Connectionhandling in PHP';

// Lasse eine sinnfreie Schleife laufen, die uns irgendwann
// hoffentlich von der Seite wegklicken oder den "Stop"-Button
// betätigen lässt
while(1)
{
    
// Schlug die Verbindung fehl?
    
if(connection_status() != CONNECTION_NORMAL)
    {
        break;
    }

    
// 10 Sekunden warten
    
sleep(10);
}

// Wird dieser Punkt erreicht, wurde das 'break'
// von einem Punkt innerhalb der while-Schleife getriggert

// Somit können wir hier ein Log schreiben oder andere Aufgaben
// ausführen, die nicht davon abhängig sind, ob der Browser des
// Benutzers noch eine stehende Verbindung zum Server hat
?>

Anmerkungen

PHP wird nicht herausfinden, ob ein User die Verbindung abgebrochen hat, bevor es nicht versucht, Informationen an den Client zu senden. Die einfache Verwendung eines echo-Statements ist keine Garantie dafür, dass eine Information übertragen wurde, lesen Sie daher auch die Dokumentation zu flush().

Siehe auch



pack> <highlight_string
Last updated: Fri, 14 Nov 2008
 
add a note add a note User Contributed Notes
ignore_user_abort
adrian
26-Apr-2007 03:37
In the last example the call to ignore_user_abort() is used incorrectly.  The manual clearly states that is the first parameter is not given, only the value is returned!

Specify a boolean value like this,

ignore_user_abort(TRUE);
spiritual-coder at spiritual-coder dot com
13-Jul-2006 09:45
If you want to simulate a crontask you must call this script once and it will keep running forever (during server uptime) in the background while "doing something" every specified seconds (= $interval):

<?php
ignore_user_abort
(); // run script in background
set_time_limit(0); // run script forever
$interval=60*15; // do every 15 minutes...
do{
  
// add the script that has to be ran every 15 minutes here
   // ...
  
sleep($interval); // wait 15 minutes
}while(true);
?>
15-Dec-2005 12:44
"It will return the previous setting" -- not quite. It returns an int, not a bool (as per the syntax description)
Rustam
26-Jun-2005 04:57
I wrote a simple function that can "spawn" another thread within the webserver by making async http request. The page that is being spawned can call ignore_user_abort() and do whatever it wants in the background...

<?php

   
function http_spawn($page)
    {
       
$basepath=ereg_replace('[^/]*$', '', $_SERVER['PHP_SELF']);
       
$cbSock=fsockopen('localhost', $_SERVER['SERVER_PORT'], $errno, $errstr, 5);
        if (
$cbSock)
        {
           
fwrite($cbSock, "GET {$basepath}{$page} HTTP/1.0\r\n"
               
."Host: {$_SERVER['HTTP_HOST']}\r\n\r\n");
        }
    }
?>

Example:
<?php

   
if ($search_initialized)
       
http_spawn("ftindex.php");
?>
qartis at qartis dot com
06-Sep-2004 04:22
Note that the function name and description seem to be contradictory:

- ignore_user_abort  (TRUE, I want to ignore the user's abort request)
- Set whether a client disconnect should abort script execution (TRUE, I want to set this behavior)

The function name is the authoritative one: a value of TRUE will ignore the user's abort.
plamen at pulsator dot com
29-Mar-2001 09:21
The script should output something to the browser in order to abort. If there is no output the script keeps on running.

pack> <highlight_string
Last updated: Fri, 14 Nov 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites