- Fix print documentation

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@81768 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Derick Rethans 2002-05-11 07:02:28 +00:00
parent 9fc1b17807
commit b59fd9fa8b

View file

@ -8,7 +8,7 @@
instead -->
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.171 $ -->
<!-- $Revision: 1.172 $ -->
<reference id="ref.strings">
<title>String functions</title>
<titleabbrev>Strings</titleabbrev>
@ -1696,10 +1696,10 @@ echo $second[1]; /* prints "another" */
</simpara>
<para>
<function>print</function> is not actually a real function (it is a
language construct) so you are not required to use parentheses
with it. But <function>print</function>, opposed to
<function>echo</function>, can be called using a
<link linkend="functions.variable-functions">variable function</link>.
language construct) so you are not required to use parentheses with it.
This also means that you can not use <function>print</function> (just
like <function>echo</function>) as a <link
linkend="functions.variable-functions">variable function</link>.
</para>
<example>
<title><function>print</function> examples</title>