Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/09/2011, 10:41
phpdevelopment
 
Fecha de Ingreso: mayo-2011
Mensajes: 256
Antigüedad: 13 años, 8 meses
Puntos: 5
No carga todo el file_get_contents

Necesito saber porque no carga los include cuando hago file_get_contents...

Esto es lo que tengo en el controller IndexAction
Código PHP:
public function indexAction()
    {
      
       
       
$file  'C:/xampp/htdocs/Test/library/Html/index.php';
       
    


       
$contents file_get_contents($file);
       
       
$this->view->content $contents;
    
    } 
En la vista tengo :

Código PHP:
<?=$this->content?>

En el archivo C:/xampp/htdocs/Test/library/Html/index.php tengo .

Código PHP:
<html>
  <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
      <div id="column"> 
           Content.
           <?php include "C:/xampp/htdocs/Test/library/Html/Test.php";?>

      </div>

  </body>
</html>
Y en el archivo Test.php tengo :

Código PHP:
<?php
/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$test = array('a'=>1,'b'=>2);
echo 
'<div id="items">';
foreach(
$test as $key=>$t){
    
$key.':'.$t;echo "<br ></div>";
}
echo 
'</div>';
?>
La salida no me muestra el contenido de Test.php, que es lo que me falla... o me falta, un saludo