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