如何将map.php包含为img标记的来源

时间:2011-05-31 04:56:27

标签: php symfony1 file map

我在我的页面中显示地图,在静态PHP中它类似(img src="action/map.php"),因为有关地图的所有代码都在map.php

在Symfony中,我很困惑在哪里放置我的map.php文件以及如何将该文件包含为img标记的来源。

1 个答案:

答案 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'); ?>"