|
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-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 07:00:01 2025 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"); }