fork(2) download
  1. <?php
  2.  
  3. $s = "acesta este un text";
  4. $sir = "stiu PHP stiu HTML stiu CSS";
  5.  
  6. print 'Text 1' . " legat de " . 'text 2' . "\n"; // Text 1 legat de text 2
  7. print ucfirst($sir) . '!!! ' . $s; // Stiu PHP stiu HTML stiu CSS!!! acesta este un text
  8.  
  9. ?>
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
Text 1 legat de text 2
Stiu PHP stiu HTML stiu CSS!!! acesta este un text