Skip to content

Instantly share code, notes, and snippets.

@scriptdev
Last active April 14, 2024 23:57
Show Gist options
  • Save scriptdev/170519410518f29b0d14b89a80737a18 to your computer and use it in GitHub Desktop.
Save scriptdev/170519410518f29b0d14b89a80737a18 to your computer and use it in GitHub Desktop.
CONVERTER ARRAY PARA JSON HTML ( THtmlRenderer )
<?php
$meses = ['JANEIRO', 'FEVEREIRO', 'MARÇO', 'ABRIL'];
$data = json_encode($meses, true);
$data = stripslashes($meses);
$html = new THtmlRenderer('app/resources/grafico.html');
$html->enableSection('main', $data);
$element_grafico->add($html);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment