PHP Classes

File: demo.php

Recommend this page to a friend!
  Classes of kirankrishnan   OSX Process   demo.php   Download  
File: demo.php
Role: Example script
Content type: text/plain
Description: Background process
Class: OSX Process
Run PHP scripts in parallel using the PHP command
Author: By
Last change:
Date: 14 years ago
Size: 130 bytes
 

Contents

Class file image Download
<?php

    $value
= $_ENV["someValue"];
   
    echo
"Value ".$value;
   
   
   
sleep(320);
   
    echo
"Stopped after 320 seconds";

?>