Made the allow_call_time_pass_reference documentation clearer - cleaned up the English.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@297854 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Mark Skilbeck 2010-04-12 03:48:58 +00:00
parent 03df64f5c8
commit 0992ae816d

View file

@ -3793,12 +3793,12 @@ auto_prepend_file=security.php
</term>
<listitem>
<para>
Tells whether the short form (<userinput>&lt;? ?&gt;</userinput>)
Tells PHP whether the short form (<userinput>&lt;? ?&gt;</userinput>)
of PHP's open tag should be allowed. If you want to use PHP in
combination with XML, you can disable this option in order to
use <userinput>&lt;?xml ?&gt;</userinput> inline. Otherwise, you
can print it with PHP, for example: <userinput>&lt;?php echo '&lt;?xml
version="1.0"?&gt;'; ?&gt;</userinput>. Also if disabled, you must use the
version="1.0"?&gt;'; ?&gt;</userinput>. Also, if disabled, you must use the
long form of the PHP open tag (<userinput>&lt;?php ?&gt;</userinput>).
</para>
<note>
@ -3869,10 +3869,10 @@ auto_prepend_file=security.php
</para>
<para>
Passing arguments by reference at function call time was deprecated for
code cleanliness reason. Function can modify its argument in
undocumented way if it didn't declared that the argument is passed by
code-cleanliness reasons. A function can modify its arguments in an
undocumented way if it didn't declare that the argument shall be passed by
reference. To prevent side-effects it's better to specify which
arguments are passed by reference in function declaration only.
arguments are passed by reference in the function declaration only.
</para>
<para>
In PHP5, <literal>allow_call_time_pass_reference</literal> is deprecated, in