diff options
Diffstat (limited to 'scripts/dev/generate-phpt/src/codeSnippets/string.txt')
-rw-r--r-- | scripts/dev/generate-phpt/src/codeSnippets/string.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/dev/generate-phpt/src/codeSnippets/string.txt b/scripts/dev/generate-phpt/src/codeSnippets/string.txt new file mode 100644 index 0000000..a1d4237 --- /dev/null +++ b/scripts/dev/generate-phpt/src/codeSnippets/string.txt @@ -0,0 +1,10 @@ +$heredoc = <<<EOT +hello world +EOT; + +$variation_array = array( + 'string DQ' => "string", + 'string SQ' => 'string', + 'mixed case string' => "sTrInG", + 'heredoc' => $heredoc, + );
\ No newline at end of file |