diff options
author | Malcolm Fell <emarref@gmail.com> | 2013-06-30 15:52:45 +1200 |
---|---|---|
committer | Malcolm Fell <emarref@gmail.com> | 2013-06-30 15:52:45 +1200 |
commit | c3df7c1c5358e34673264122f16ceaf5f17e236c (patch) | |
tree | f7268afa494b106854a7cebe187bc208b0a58139 | |
parent | db04a0c728fde5386590753c53568d7b973349ae (diff) |
Clarify includes and open tags.
If it's not PHP, it doesn't need the open tag.
-rw-r--r-- | php.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php.html.markdown b/php.html.markdown index 20923548..75bbd214 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -379,7 +379,7 @@ echo $function_name(1, 2); // => 3 ``` ```php <?php -// Included files must also begin with a PHP open tags. +// PHP within included files must also begin with a PHP open tag. include 'my-file.php'; // The code in my-file.php is now available in the current scope. |