Skip to content

Instantly share code, notes, and snippets.

@fubuki
Created July 8, 2014 15:29
Show Gist options
  • Select an option

  • Save fubuki/e621eb4844a975b9c0e1 to your computer and use it in GitHub Desktop.

Select an option

Save fubuki/e621eb4844a975b9c0e1 to your computer and use it in GitHub Desktop.
register_shutdown_function
<?php
register_shutdown_function(function () {
global $argv;
if (isset($argv[1])) {
$argv[1]++;
} else {
$argv[1] = 0 ;
}
pcntl_exec("/usr/bin/php", $argv);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment