Php – Fatal error: Call to undefined function json_encode() ..

jsonPHP

Im trying to use json with php and i keep getting the error

PHP Fatal error: Call to undefined function json_encode()

I am using php version 5.3.6 and on phpinfo(); nothing mentions json. Any suggestions?

Best Answer

For some reason your PHP was compiled without JSON. Either:

Related Topic