mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
clarify return value (it's a copy)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@179324 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
654f5a90a6
commit
f52af952f6
1 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<!-- splitted from ./en/functions/funchand.xml, last change in rev 1.1 -->
|
||||
<refentry id="function.func-get-args">
|
||||
<refnamediv>
|
||||
|
@ -15,7 +15,7 @@
|
|||
<void/>
|
||||
</methodsynopsis>
|
||||
<simpara>
|
||||
Returns an array in which each element is the corresponding
|
||||
Returns an array in which each element is a copy of the corresponding
|
||||
member of the current user-defined function's argument
|
||||
list. <function>func_get_args</function> will generate a warning
|
||||
if called from outside of a function definition.
|
||||
|
@ -25,8 +25,8 @@
|
|||
</simpara>
|
||||
<note>
|
||||
<simpara>
|
||||
This function returns passed arguments only, and does not account for
|
||||
default (non-passed) arguments.
|
||||
This function returns a copy of the passed arguments only, and does not
|
||||
account for default (non-passed) arguments.
|
||||
</simpara>
|
||||
</note>
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue