mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
include_once returns TRUE when including the same file repeatedly (fixes #70031)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@337130 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
b0dc55fed2
commit
3efd70fb90
1 changed files with 2 additions and 2 deletions
|
@ -9,8 +9,8 @@
|
|||
the specified file during the execution of the script.
|
||||
This is a behavior similar to the <function>include</function> statement,
|
||||
with the only difference being that if the code from a file has already
|
||||
been included, it will not be included again. As the name suggests,
|
||||
it will be included just once.
|
||||
been included, it will not be included again, and include_once returns &true;. As the name suggests,
|
||||
the file will be included just once.
|
||||
</para>
|
||||
<para>
|
||||
<literal>include_once</literal> may be used in cases where
|
||||
|
|
Loading…
Reference in a new issue