解析url的部分并发送到函数

时间:2011-05-10 22:01:45

标签: cakephp cakephp-1.3

我有一个名为customers的控制器和名为products的功能。我有这样的链接 http://mysite.com/customers/products/ {CUSTOMERNUMBER} /imagefile.png

一旦我的客户将链接放在我网站的浏览器中,我想让我的函数获取imagefile.png。

我怎么用cakephp做到这一点

1 个答案:

答案 0 :(得分:2)

您的products行动需要两个论据来处理:

function products($customernumber, $image) {
    //here you can access these variables and use them for further processing
}

我希望在这种情况下这是你的问题,如果你需要“获取图像”的帮助,请发表评论。