mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
12 lines
174 B
PHP
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;
|
|
|
|
?>
|
|
|