From f55a603031ac7df7893c5eb064d5c26f345f95e2 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Tue, 5 Nov 2019 13:50:02 -0500 Subject: [PATCH] Add php highlighting test file --- test.php | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 test.php diff --git a/test.php b/test.php new file mode 100644 index 0000000..6153388 --- /dev/null +++ b/test.php @@ -0,0 +1,59 @@ +doNothing(); + + $c = $a + $b; + $a = $c - $b; + + $c = $a * $b; + $b = (int) ($c / $a); + + return $c; + } +} + +/* + * Multi-line comment + */ +$foobar = new FooBar(); + +$x = 3; + +// Heredoc +$sql = <<{x} +TEMPLATE; + +?> + + +

+ +