From 3fff298bd3fea02cf47c2e40a5d3fe4cc50262cc Mon Sep 17 00:00:00 2001 From: Torben Wilson Date: Sun, 10 Feb 2002 18:56:54 +0000 Subject: [PATCH] Grammar fix. What the hell did I think 'equal and identical to' was supposed to mean? :) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@69972 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/dir.xml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/functions/dir.xml b/functions/dir.xml index 31999e00bd..2f132b9db2 100644 --- a/functions/dir.xml +++ b/functions/dir.xml @@ -1,5 +1,5 @@ - + Directory functions Directories @@ -215,9 +215,12 @@ if ($dir = @opendir("/tmp")) { Please note the fashion in which readdir's return value is checked in the examples below. We are explicitly - testing whether the return value is equal and identical to - &false; since otherwise, any directory entry whose name evaluates - to &false; will stop the loop. + testing whether the return value is identical to (equal to and of + the same type as--see Comparison + Operators for more information) &false; since otherwise, + any directory entry whose name evaluates to &false; will stop the + loop.