PHP Classes

File: taskmanager/tasks/helloworld2.task.php

Recommend this page to a friend!
  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: 11 years ago
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";
    }
}
?>