Re: Newbie needs recommendation for fast learning a little php.
[email protected] Sat, 03 Jul 2021 14:36:11 -0400
| Newsgroups | comp.lang.php,alt.comp.lang.php,alt.php |
|---|---|
| Organization | Newshosting.com - Highest quality at a great price! www.newshosting.com |
| Message-ID | <[email protected]> |
On Sat, 3 Jul 2021 15:40:33 +0200, Arno Welzel <[email protected]> wrote: >[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. Okay, thanks. I've corrected that now. >Also see: <https://www.php.net/manual/en/function.explode.php>