C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
include_onceIt is similar as include but it includes external file only one time. First, it will check whether the specified file is already included or not. If the file is not included then it only includes an external file. Example 1Save as page1.php Save as page2.php Output: Example 2Change the statement in page1.php Output: In example2 require_once does not working.
Next TopicMVC Architecture
|