|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-08-23 21:06 UTC] andrei@php.net
[2001-08-23 22:00 UTC] andrei@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 08:00:02 2025 UTC |
Have fun: <? $data = Array('a','b','c'); // works # $data = Array(1 => 'a', 2 => 'b', 3 => 'c'); // crash # $data = Array('1' => 'a', '2' => '3'); // crash $plop = array_map('addslashes', $data); die("I didn't crash :)"); ?>