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