fork(19) download
  1. <?php
  2.  
  3. $today = date( 'd-m-Y' );
  4. $text1 = "Azi e $today"; # cu ghilimele
  5. $text2 = 'Azi e $today'; # cu apostrof
  6.  
  7. print $text1;
  8. print "\n<br>\n";
  9. print $text2;
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
Azi e 26-07-2012
<br>
Azi e $today