1$heredoc = <<<EOT
2hello world
3EOT;
4
5$variation_array = array(
6  'string DQ' => "string",
7  'string SQ' => 'string',
8  'mixed case string' => "sTrInG",
9  'heredoc' => $heredoc,
10  );