mirror of
https://github.com/php/php-src.git
synced 2026-03-27 01:32:22 +01:00
10 lines
180 B
Plaintext
10 lines
180 B
Plaintext
$heredoc = <<<EOT
|
|
hello world
|
|
EOT;
|
|
|
|
$variation_array = array(
|
|
'string DQ' => "string",
|
|
'string SQ' => 'string',
|
|
'mixed case string' => "sTrInG",
|
|
'heredoc' => $heredoc,
|
|
); |