gpt4 book ai didi

php - Cake PHP 使用 url 中的参数重定向

转载 作者:IT王子 更新时间:2023-10-29 01:14:51 24 4
gpt4 key购买 nike

我有一个需要重定向到 URL 中的参数的页面: http://www.example.com/myController/myAction/param1:val1/param2:val2

我知道有一个用于重定向的 CakePHP 重定向函数,其工作原理如下:

 $this->redirect(array("controller" => "myController",
"action" => "myAction",
$data_can_be_passed_here),
$status, $exit);

如何使用上述函数将我想要的参数添加为 url 的一部分?

我认为可能有另一个元素可以添加到数组中,以便我可以传递 param1:val1param2:val2

任何帮助将不胜感激!

最佳答案

我不知道为什么我在 CakePHP 文档中找不到这个,但我终于找到了解决方案。我将其张贴在这里以防其他人遇到同样的问题。 (如果有人知道它在文档中的什么位置,请也将其发布,谢谢!)

要重定向到 URL:

http://www.example.com/myController/myAction/param1:val1/param2:val2

您可以使用:

$this->redirect(array("controller" => "myController", 
"action" => "myAction",
"param1" => "val1",
"param2" => "val2",
$data_can_be_passed_here),
$status,
$exit);

希望对您有所帮助!

关于php - Cake PHP 使用 url 中的参数重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2814777/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com