Re: Newbie needs recommendation for fast learning a little php.
Arno Welzel <[email protected]> Sat, 3 Jul 2021 15:40:33 +0200
| Newsgroups | comp.lang.php,alt.comp.lang.php,alt.php |
|---|---|
| Message-ID | <[email protected]> |
[email protected]: [...] > <?php > date_default_timezone_set('America/New_York'); > $file = $_SERVER["SCRIPT_NAME"]; > $break = Explode('/', $file); The function name is "explode()" in lower case and not "Explode()". Even if PHP accepts the upper case version as well you should use the correct case to avoid problems with future updates. Also see: <https://www.php.net/manual/en/function.explode.php> -- Arno Welzel https://arnowelzel.de