我在我的页面中显示地图,在静态PHP中它类似(img src="action/map.php")
,因为有关地图的所有代码都在map.php
。
在Symfony中,我很困惑在哪里放置我的map.php
文件以及如何将该文件包含为img标记的来源。
答案 0 :(得分:2)
你可以用例如行动:
public function executeShowmap(){
$this->getResponse()->setHttpHeader('Content-type', 'image/jpeg');
$this->getResponse()->setContent(file_get_contents($filename));
return sfView::NONE;
}
并在视图中:
img src="<?php echo url_for('module/showmap'); ?>"