|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-07-14 18:20 UTC] zeev
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Mon Jan 05 01:00:01 2026 UTC |
How come this gives a parsing error, $locale="en"; if($locale!="") { if(file_exists("locale-$locale.php")) include("locale-$locale.php"); else $bugs_debug("The include file for locale \"$locale\" does not exist!\n"); } and this doesn't? $locale="en"; if($locale!="") { if(file_exists("locale-$locale.php")) { include("locale-$locale.php"); } else $bugs_debug("The include file for locale \"$locale\" does not exist!\n"); }