Login   Register  
PHP Classes
elePHPant
Icontem

File: taskmanager/tasks/helloworld.task.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  >  taskmanager/tasks/helloworld.task.php  >  Download  
File: taskmanager/tasks/helloworld.task.php
Role: Example script
Content type: text/plain
Description: Hello World Task
Class: PTM
Manage PHP tasks running in parallel processes
Author: By
Last change:
Date: 2012-07-16 02:38
Size: 138 bytes
 

Contents

Class file image Download
<?php
class HelloWorld extends Task{
    function 
run(){
        echo 
"Hello World!\n";
        
$this->share_memory("POST","Goodbye",0);
    }
}
?>