json_decode返回“ NULL”,我不知道为什么

时间:2020-07-21 15:17:33

标签: php json

当我写这篇文章时:

<?php    
  $social = ControladorPlantilla::ctrEstiloPlantilla();    
  var_dump($social["redesSociales"]);    
?>

一切都很好,但是当我这样做时:

<?php    
  $social = ControladorPlantilla::ctrEstiloPlantilla();
  var_dump(json_decode($social["redesSociales"],true));
?>

它返回NULL

我该怎么办?

1 个答案:

答案 0 :(得分:-1)

简单地说,您可以先尝试以下内容,以便了解其中的所有内容。

var_dump(json_decode([ "social" => $social ], true));