summaryrefslogtreecommitdiff
path: root/scripts/dev/generate-phpt/src/codeSnippets/string.txt
blob: a1d42376da5aa8b682615209616bb95fe0a40d31 (plain)
1
2
3
4
5
6
7
8
9
10
$heredoc = <<<EOT
hello world
EOT;

$variation_array = array(
  'string DQ' => "string",
  'string SQ' => 'string',
  'mixed case string' => "sTrInG",
  'heredoc' => $heredoc,
  );