php-src/Zend/tests/nowdoc.inc
2008-02-12 09:28:30 +00:00

12 lines
174 B
PHP

<?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;
?>