Formation Prestashop intégrateur: Les filtres / json_encode
Vous êtes ici : Accueil / Prestashop intégrateur / Les filtres / json_encode
json_encode
Convertit un tableau en une chaîne encodée au format JSON.
Exemple de passage de variable en PHP :
$smarty->assign(array(
'arrData' => array(
'a' => 1,
'b' => 2,
'c' => 3
)
));
$smarty->fetch('module:module_name/views/templates/hook/hello.tpl')
Exemple de template :
{assign var="jsonData" value=$arrData|json_encode}
<p>{$jsonData}</p>
Resultat :
<p>{"a":1,"b":2,"c":3}</p>