From 9533989cdbeae085734cd0c7cb8134326efc3b23 Mon Sep 17 00:00:00 2001 From: Yannick Torres Date: Thu, 22 Mar 2012 15:56:08 +0000 Subject: [PATCH] Revert some change git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@324461 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/namespaces.xml | 2 +- language/oop5/iterations.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/language/namespaces.xml b/language/namespaces.xml index a4e8a93ffc..0faa8d5cd3 100644 --- a/language/namespaces.xml +++ b/language/namespaces.xml @@ -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 { diff --git a/language/oop5/iterations.xml b/language/oop5/iterations.xml index cedca65098..7bc42729c1 100644 --- a/language/oop5/iterations.xml +++ b/language/oop5/iterations.xml @@ -69,7 +69,7 @@ private => private var visible variables that can be accessed. To take it a step further you can implement one of PHP 5's internal interfaces named + linkend="language.oop5.interfaces">interface named Iterator. This allows the object to decide what and how the object will be iterated.