ID: 42186 Updated by: [EMAIL PROTECTED] Reported By: djlopez at gmx dot de -Status: Feedback +Status: Bogus Bug Type: JSON related Operating System: * PHP Version: 5.2.3 New Comment:
And according to http://www.json.org/ \l is not in the accepted list of chars. So no bug here. Previous Comments: ------------------------------------------------------------------------ [2007-08-04 14:17:56] [EMAIL PROTECTED] Replace print_r() with var_dump() and you might actually see something. ------------------------------------------------------------------------ [2007-08-02 18:47:06] djlopez at gmx dot de Description: ------------ json_decode() returns nothing, when the string contains an \l (lowercase L), maybe (internal) crash!? Reproduce code: --------------- $json = '{"stringwithbreak":"line with a \lbreak!"}'; print_r(json_decode($json, true)); Expected result: ---------------- print_r() is NOT returning anything, json_decode() seems to be not executed. Actual result: -------------- Could be "solved" this way: print_r(json_decode(str_replace("\\l", "", $json), true)); However, it's a bug... ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=42186&edit=1