code.fastix.org

Dateiansicht:

Datei:Projekte -> PHP73to74 -> testfile_nothing2do.php
md5:c33cde67ffb33295e7bcf49ef10d68d7
sha1:7d4a251fa88e84e7b1f11ccd43d88aa7aaee304f
Download-Link:Download
  1. <?php
  2. error_reporting( E_ALL );
  3.  
  4. $bar="Hallo";
  5. $i=3;
  6. $tok=1;
  7.  
  8. $foo = $bar[1];
  9. $foo = $bar[ 1 ];
  10. $foo = $bar[ 1+3 ];
  11.  
  12. $foo = $bar[ $tok + 3 ]; $foo = $bar[$i];
  13.  
  14. class mtest {
  15.         var $t='hallo';
  16.        
  17.         function __construct($value) {
  18.                 $this->t = $value;
  19.         }
  20.        
  21.         function get() {
  22.                 return $this->t;
  23.         }
  24.        
  25. }
  26.  
  27. $t=new mtest('Hallo Welt');
  28. echo $t->{'t'};
  29.