1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/Zend/tests/nowdoc.inc
Dmitry Stogov ddcf7a2f49 Added NEWDOC
2008-02-12 09:27:45 +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;
?>