diff options
Diffstat (limited to 'Zend/tests/nowdoc.inc')
-rw-r--r-- | Zend/tests/nowdoc.inc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Zend/tests/nowdoc.inc b/Zend/tests/nowdoc.inc new file mode 100644 index 0000000..98f9fba --- /dev/null +++ b/Zend/tests/nowdoc.inc @@ -0,0 +1,11 @@ +<?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; + +?> + |