我试图建立一个非常简单的表:
Sex %
M 40
F 60
使用 php 对数组进行编码,但假设输入数据错误,则不绘制图形。你能说出问题出在哪里吗?
$table = array();
$table['cols'] = array(
array('label' => 'Sesso', 'type' => 'string'),
array('label' => 'Quantita', 'type' => 'number'));
$rows = array();
$temp = array();
$temp[] = array('v' => 'M');
$temp[] = array('v' => 60);
$rows[] = array('c' => $temp);
$temp = array();
$temp[] = array('v' => 'F');
$temp[] = array('v' => 40);
$rows[] = array('c' => $temp);
$table['rows'] = $rows;
$jsonTable = json_encode($table);