|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-10-30 09:47 UTC] stas@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Wed Jul 15 16:00:01 2026 UTC |
Strange parser thingy: // this is allowed if ($skip_name) { unset($data[id], $data[name]); } else { unset($data[id]); } // this gives parse error: $skip_name ? unset($data[id]) : unset($data[id], $data[name]); $plop OR unset($plop) also makes parser unhappy