Login   Register  
PHP Classes
elePHPant
Icontem

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

Contents

Class file image Download
<?php
class HelloWorld2 extends Task{
    function 
run(){
        
$data=$this->share_memory("GET","HelloWorld",0);
        echo 
$data." world!\n";
    }
}
?>