1 2 3 4 5 6 7 8 9 10
<?php // Common definitions for heredoc/nowdoc tests. $a = 1; $b = 2; $c = array( 'c' => 3, ); class d { public function __construct() { $this->d = 4; } }; $d = new d; ?>