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;
}
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>
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>';
?>