我在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);?>