Hola
Código PHP:
/*
//es como si tu array estuviera asi
$ar = array(
//indice
"TblEnte" =>
//indice
"TblEjecucion" =>
//elemento
array (
0 => array (
"id_ejecucion" => 1,
"trimestre_i" => 0
)
)
);
*/
//deberia ser:
$ar = array(
//indice
"TblEnte" =>
//elemento array
array ( //indice
"TblEjecucion" =>
//elemento array
array (
"id_ejecucion" => 1,
"trimestre_i" => 0
)
)
);
/*
echo "<pre>";
var_dump($ar);
echo "</pre>";
*/
//devolvera cero (literal) ya que su valor es cero
echo $ar["TblEnte"]["TblEjecucion"]["trimestre_i"];
//0