Reputation: 5271
Is there a simple alternative to using json_decode function in php versions prior to 5.2? I am feeling lazy at this time of night and can't be bothered to update php yet. Cheers.
Upvotes: 2
Views: 8876
Reputation: 85832
The comments for json_decode()
include a few possible solutions.
Here's one that decodes by itself (though you shouldn't use it since it uses eval()
! Oops.), and here's one that uses a PEAR module.
Upvotes: 4