Jump to content

[SOLVED] Custom function on page timeout?


Recommended Posts

Lets say they page will timeout in 30 seconds (max execution time). If the page has been loading for 25 seconds (about to timeout) I would like to trigger a custom function.

 

Here is some fake code that might explain what I want to do:

<?php
set_time_limit(30);
if (page_load_time() > 25){
    // Do Function
}
?>

function say_goodbye() {
if (connection_aborted()) {
	echo 'script has been aborted by the user';
} elseif (connection_status() == CONNECTION_TIMEOUT) {
	echo 'script has timed out';
} else {
	echo 'script has finished normally';
}
}

register_shutdown_function("say_goodbye");

 

function say_goodbye() {
if (connection_aborted()) {
	echo 'script has been aborted by the user';
} elseif (connection_status() == CONNECTION_TIMEOUT) {
	echo 'script has timed out';
} else {
	echo 'script has finished normally';
}
}

register_shutdown_function("say_goodbye");

 

 

Wow, I'll test it out and let you know :)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.