Eğer linux üzerinde bunu yapmak gerekir varsayarsak, tarayıcı ve hem de CLI herhangi bir php komut dosyası çalıştırabilirsiniz.
You may run a simple php script:
<? echo "Ana are mere"; ?>
like this:
php -f ./index.php
Dosya izinleri, ve kod içinde sürünme olabilir herhangi bir hata, bellek sızıntıları veya süreci, sürekli çalışır gibi ayrılmamış değişkenler, şimdi çok görünür hale gelecektir konusunda dikkatli olun.
Eğer arka planda her zaman çalışan istemiyorsanız, (http://unixgeeks.org/security/newbie/unix/cron-1.html) düzenli işleri başlatmak edebilmek için crontab bir göz atın.
- Düzenle -
http://stackoverflow.com/questions/45953/php-execute-a-background-process ve http://stackoverflow.com/questions/122834/php-how-to-return-information-to-a-waiting-script-and-continue-processing bir göz atın
Basically you want to start a background process, and you may do this by either using exec() or fsockopen() or a file_get_contents() on your own script probably in this order, if don't have access to exec, or socket functions.
Also take a look at http://us2.php.net/manual/en/function.session-write-close.php so the "background script" won't "block" the request and http://us2.php.net/manual/en/function.ignore-user-abort.php