Why would this echo “NULL”? In my would it would be decoded to an empty array.
Is it something obvious I’m missing?
<?php
$json = json_encode(array());
$json_decoded = json_decode($json, true);
// same with json_decode($json);
if ($json_decoded == null){
echo "NULL";
} else
{
echo "NOT NULL";
}
?>
This is because
array()==NULL. It does not check the object type in this case.gettype(null)returns null, whereasgettype(array())returns array. Hope you got the difference.Probably what you need is