Revert some change

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@324461 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Yannick Torres 2012-03-22 15:56:08 +00:00
parent addba5dcce
commit 9533989cdb
2 changed files with 2 additions and 2 deletions

View file

@ -803,7 +803,7 @@ function strlen($str)
echo E_ERROR, "\n"; // prints "45"
echo INI_ALL, "\n"; // prints "7" - falls back to global INI_ALL
echo strlen('hi'); "\n"; // prints "2"
echo strlen('hi'), "\n"; // prints "2"
if (is_array('hi')) { // prints "is not array"
echo "is array\n";
} else {

View file

@ -69,7 +69,7 @@ private => private var
<link linkend="language.oop5.visibility">visible</link> variables that can be
accessed. To take it a step further you can implement one
of PHP 5's internal <link
linkend="language.oop5.interfaces">interfaces</link> named
linkend="language.oop5.interfaces">interface</link> named
<varname>Iterator</varname>. This allows the object to decide what and how
the object will be iterated.
</para>