'text',
'data'=>$i[1]
);
}
if (strlen($i[4])) {
$info2 = array();
preg_match_all($atributos, $i[5], $info2, PREG_SET_ORDER);
$data = array();
foreach ($info2 as $i2) {
$key = $i2[1];
$value = $i2[3];
if ($value[0]=='"') {
$value = trim($value, '"');
} else if ($value[0]=="'") {
$value = trim($value, "'");
}
$data[$key] = $value;
}
$parse[] = array(
'type'=>'token',
'data'=>$data,
'name'=>$i[4]
);
}
if (strlen($i[6])) {
$parse[] = array(
'type'=>'text',
'data'=>$i[6]
);
}
}
//highlight_string(print_r($info, true));
echo '';
print_r($parse);
/*require('class/TreeScript.class.php');
$parse = TreeScript::getParse("texto uno [[MITAG uno:dfasdf dos='adf fdsas fsfsf ']] otro texto al final etc");
print_r($parse);*/
?>