PHP ile Apache Quee işlemleri (arka planda çalıştırın)

1 Cevap php

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?

1 Cevap

Basit yolu bir veritabanı tablosunda kuyruğu tutmak ve bu tablodan görevleri okur ve onları yürütür bir cron işi var olmaktır. Ev sahibi varsayarsak cron işleri destekliyorsa - değilse, bir "sahte" cron sayfa yapmak ve görev zamanlayıcı ya da her türlü kullanarak, bilgisayarınızdan periyodik diyoruz.