symfony的图片网址问题

时间:2012-11-07 12:09:38

标签: php doctrine symfony-1.4

我在routing.yml

中创建了一条路线
showfriend:
  url:     /friend/:id/:username
  class:   sfDoctrineRoute
  options: { model: profile, type: object }
  param:   { module: friend, action: index }
  requirements:
    id: \d+
    sf_method: [get]

我在我的friendsSuccess.php中使用它

<a href="<?php echo url_for('showfriend', array( "id"=> $friend['friend_id'], "username" => $a)) ?>"><?php echo $a ?></a>

它工作正常,我得到了这条路线

http:// localhost/Partytime/web/friend/2/admin

一切仍然正常,但我的图像无法正常显示,这是我得到的图像路线

http://localhost/Partytime/web/friend/2/admin/uploads/banners/d993c1a802cc21317a5ae627ed874d44af240d2c.png

事情是它在路线中放置/friend/2/admin路径....

这就是我显示图像的方式:

<?php $banner="/uploads/banners/" . $banner->getImage();?>
<?php echo image_tag($banner);?>

0 个答案:

没有答案