code.fastix.org

Dateiansicht:

Datei:Projekte -> PHP73to74 -> testfile.php
md5:ab70a3db86bbb725b5186fd5da590b57
sha1:1ab827888d0cb0e1f49c9fa6c012ad8743dd2636
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.