1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-21 14:02:02 +02:00

Merge pull request #55 from emarref/master

PHP review
This commit is contained in:
Adam Bard
2013-06-29 23:18:21 -07:00

View File

@@ -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.