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 87a8f72f49 Added NOWDOC
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;
?>