Ein PHP-Script in sich selber (mit Hilfe von Shell) mehrmals aufrufen

Shell/Cronjob:

/usr/bin/php /home/meineseite/test.php --repeat='123'

<?php

 

$shellArgs = getopt('', ["repeat:", "optional2::"] );

$repeat = $shellArgs['repeat'];

for( $i=0; $i<$repeat; $i++){

    if( $i > 5) break; # Endlos-Schleife verhindern

    shell_exec("/usr/bin/php " . __FILE__ );

}

# weitere PHP-Code für üblichen Ablauf

 

Neuen Kommentar schreiben

CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.

Suche

Neueste Kommentare