|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-10-13 10:07 UTC] tony2001 at phpclub dot net
[2003-10-13 11:34 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 05 07:00:01 2025 UTC |
Description: ------------ Comparison operator "===" doesn't work as it should while (!feof ($this->link)) { $line = fgets($this->link, 4096) ; var_dump($line) ; //output string(1) " " /* '' is identical to false inside if */ if($line === false){ var_dump($line) ; //output bool(false) } }//end while