|
użytkowników online: 66
|
OPINIE UŻYTKOWNIKÓW
|
Mimo, że strony WWW tworzymy już 5 lat zawsze znajdziemy coś ciekawego. Świadczy o tym chociażby nasza aktówka, w której znajduje się kilkadziesiąt porad, z których często korzystamy. Otwarta forma poradnika, czyli możliwość podrzucania tematów oraz wspólny ich rozwój, to nieoceniona pomoc. Uważam, ze abonament roczny jest niewspółmiernie niski do jakości zaprezentowanych materiałów.
Marek Kończal
Internetix.pl
|
|
PODRĘCZNIK PHP 5.x, 4.x, 3.x - częściowo spolszczony / źródło: www.php.net
[Spis]
[A]
[B]
[C]
[D]
[E]
[F]
[G]
[H]
[I]
[J]
[K]
[L]
[M]
[N]
[O]
[P]
[Q]
[R]
[S]
[T]
[U]
[V]
[X]
[W]
[Z]
Rozdział 40. Obsługa połączeńNotatka: Ten rozdział dotyczy wersji 3.0.7 i późniejszych.
PHP wewnętrznie zarządza stanem połączenia. Mogą wystąpić
trzy stany:
Kiedy skrypt PHP się wykonuje, aktywny jest stan NORMAL.
Jeśli klient się rozłączy, stan przechodzi w ABORTED.
Zwykle ma to miejsce gdy użytkownik naciśnie przycisk STOP w
przeglądarce. Jeśli przekroczony zostanie narzucony limit czasu
(patrz set_time_limit()), stan zmienia się
na TIMEOUT.
Możesz zdecydować czy po rozłączeniu klienta praca skryptu ma zostać
przerwana. Czasem przydatne jest by skrypty działały do końca, nawet
gdy braknie przeglądarki do której można wysyłać dane. Domyślnie,
po rozłączeniu się klienta, działanie skryptu jest przerywane. To
zachowanie można zmienić dzięki opcji ignore_user_abort w php.ini, jak
również dyrektywie Apache "php_value ignore_user_abort" lub funkcji
ignore_user_abort(). Jeśli nie każesz PHP ignorować
rozłączeń klienta, a klient rozłączy się, skrypt zakończy działanie.
Jedyny wyjątek wystąpi, jeśli zarejestrujesz funkcję zamykającą, używając
register_shutdown_function(). Wtedy, gdy użytkownik
wciśnie przycisk STOP i przy kolejnej próbie wysłania wyniku PHP
wykryje przerwanie połączenia, zostanie wykonana funkcja zamykająca.
Będzie ona również wywoływana przy normalnym zakończeniu pracy skryptu,
zatem, by wykonać inne czynności gdy klient się rozłączy, można
użyć funkcji connection_aborted(). Zwraca ona
TRUE jeśli połączenie zostało przerwane.
Skrypt może zostać również zakończony przez wbudowany licznik czasu.
Domyślnie czas ten wynosi 30 sekund. Wartość tę można zmienić
używając opcji max_execution_time w php.ini, jak również dyrektywy
Apache php_value max_execution_time lub funkcji
set_time_limit(). Kiedy czas na wykonanie się
skończy, skrypt zostanie przerwany podobnie jak w przypadku rozłączenia
się klienta (patrz wyżej). Jeśli funkcja zamykająca była zarejestrowana,
zostanie wywołana. Wewnątrz funkcji zamykającej możesz sprawdzić czy
została ona wywołana wskutek przekroczenia czasu. Do tego celu użyj
funkcji connection_status(). Funkcja zwróci 2, jeśli to
przekroczenie limitu czasu spowodowało wywołanie funkcji
zamykającej.
Należy zwrócić uwagę, że stany ABORTED i TIMEOUT mogą być aktywne
jednocześnie. Jest to możliwe, jeśli każesz PHP ignorować rozłączenia
klienta. PHP będzie brało pod uwagę fakt, że połączenie z klientem
mogło zostać zerwane, ale skrypt będzie pracował dalej. Gdy minie czas
przeznaczony na wykonanie skryptu, zostanie on przerwany i uruchomiona
zostanie funkcja zamykająca (jeśli była ustawiona). W tym momencie funkcje
connection_timeout() i
connection_aborted() będą zwracały TRUE. Możesz
także sprawdzić oba stany przy pomocy funkcji
connection_status() w takim wypadku zwróci ona 3.
User Contributed Notesbg at ms dot com
22-Sep-2005 03:42
Confirmed. User presses STOP button. This sends a RST packet and closes the connection. PHP is most certainly immediately affected (i.e., the script is stopped, whether or not any output is pending for the user, or even if script is just grinding away on a database without having output anything).
ignore_user_abort() exists to prevent this.
If user STOPS, script ignores the RST and runs to completion (the output is apparently ignored by apache and not sent to the user, who sent the RST and closed the TCP connection). If user's connection just vanishes (isp problem, disconnect, whatever), and there is no RST sent by user, then eventually the script will timeout.
hrgan at melibado dot com
12-Dec-2004 08:08
As it was said, connection handling is very useful when web application need to do something in background. I found it very useful when application need something from database, wrap that data with template, create some html files and save it to filesystem. And all that on server with heavy load. Without connection handling - function ignore_user_abort() - this process can be interrupted by user and final step will never be done.
Lee
18-Sep-2004 12:16
The point mentioned in the last comment isn't always the case.
If a user's connection is lost half way through an order processing script is confirming a user's credit card/adding them to a DB, etc (due to their ISP going down, network trouble... whatever) and your script tries to send back output (such as, "pre-processing order" or any other type of confirmation), then your script will abort -- and this could cause problems for your process.
I have an order script that adds data to a InnoDB database (through MySQL) and only commits the transactions upon successful completion. Without ignore_user_abort(), I have had times when a user's connection dropped during the processing phase... and their card was charged, but they weren't added to my local DB.
So, it's always safe to ignore any aborts if you are processing sensitive transactions that should go ahead, whether your user is "watching" on the other end or not.
ej at campbell *dot* name
12-Feb-2004 02:01
I don't think the first example given below will occur in the real world.
As long as your order handling script does not output anything, there's no way that it will be aborted before it completes processing (unless it timeouts). PHP only senses user aborts when a script sends output. If there's no output sent to the client before processing completes, which is presumably the case for an order handling script, the script will run to completion.
So, the only time a script can be terminated due to the user hitting stop is when it sends output. If you don't send any output until processing completes, you don't have to worry about user aborts.
pulstar at mail dot com
07-Aug-2003 08:32
These functions are very useful for example if you need to control when a visitor in your website place an order and you need to check if he/she didn't clicked the submit button twice or cancelled the submit just after have clicked the submit button.
If your visitor click the stop button just after have submitted it, your script may stop in the middle of the process of registering the products and do not finish the list, generating inconsistency in your database.
With the ignore_user_abort() function you can make your script finish everything fine and after you can check with register_shutdown_function() and connection_aborted() if the visitor cancelled the submission or lost his/her connection. If he/she did, you can set the order as not confirmed and when the visitor came back, you can present the old order again.
To prevent a double click of the submit button, you can disable it with javascript or in your script you can set a flag for that order, which will be recorded into the database. Before accept a new submission, the script will check if the same order was not placed before and reject it. This will work fine, as the script have finished the job before.
Note that if you use ob_start("callback_function") in the begin of your script, you can specify a callback function that will act like the shutdown function when our script ends and also will let you to work on the generated page before send it to the visitor.
|