Ben bir şekilde PHP ile Apache web sunucusunda "quee" operasyonları edebilmek istiyorum. Örneğin ben böyle bir döngü oluşturmak istiyorsanız:
<?php
foreach($files as $key=>$value){
download($value);
}
?>
The "download" function just runs wget and downloads the file to a specified position. This is working OK but my problem is that during this operation, I can't do anything else until the files are downloaded. In other words, what i am trying to do is to have the download function run in the background (using another Apache thread or something), letting me move around and do other things on my site.
Bunu nasıl yapabilirim?