Phpdocs 13

CategoryStrings
Code Examples
'; $str = <<"; /* More complex example, with variables. */ class foo { var $foo; var $bar; function foo() { $this->foo = 'Foo'; $this->bar = array('Bar1', 'Bar2', 'Bar3'); } } $foo = new foo(); $name = 'MyName'; echo <<foo. Now, I am printing some {$foo->bar[1]}. This should print a capital 'A': \x41 EOT;
Test Code
Web Linkhttp://www.php.net/manual/en/language.types.string.php
Remarks
Cancel