Re: [PHP-WIN] Weird/strange issue with PHP file
[email protected] (Niel Archer)
| Newsgroups | php.windows |
|---|---|
| Message-ID | <[email protected]> |
Hi > $iIndex = array_flip($this->arPlayers)[$sPlayer]; This is array dereferencing, which was added with PHP 5.4 so it will cause an error on previous versions. see example 7 at http://php.net/manual/en/language.types.array.php As to why it hangs, for an excessive time, on your productions server. I suggest checking the error logs for details. You do write errors to a log, don't you? ;-) -- Niel Archer