Dateiansicht:
Datei: | Projekte -> PHP73to74 -> testfile.php |
---|---|
md5: | ab70a3db86bbb725b5186fd5da590b57 |
sha1: | 1ab827888d0cb0e1f49c9fa6c012ad8743dd2636 |
Download-Link: | Download |
- <?php
- $bar="Hallo";
- $i=3;
- $tok=1;
- $foo = $bar{1};
- $foo = $bar{ 1 };
- $foo = $bar{ 1+3 };
- $foo = $bar{ $tok + 3 }; $foo = $bar{$i};
- class mtest {
- var $t='hallo';
- function __construct($value) {
- $this->t = $value;
- }
- function get() {
- return $this->t;
- }
- }
- $t=new mtest('Hallo Welt');
- echo $t->{'t'};