PHP Classes

File: taskmanager/tasks/helloworld.task.php

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