Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Sildaekar Decrura  >  PTM  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example 1
Class: PTM
Manage PHP tasks running in parallel processes
Author: By
Last change: Fixed pointer
Date: 2012-07-17 01:38
Size: 405 bytes
 

Contents

Class file image Download
<?php
//In this example we load and run the task "HelloWorld"

//Include the task manager into our program
require_once("./taskmanager/container.php");

//Initialize the Manager
$manager=new TaskManager();

//Load the task "HelloWorld"
$manager->add_task(new HelloWorld());

//Make sure there are tasks present
if($manager->check_tasks()){
    
//Run all loaded tasks
    
$manager->run();
}
?>