Codeigniter URI段有"/"嵌入值中


Codeigniter URI segment has "/" embeded in the value

使用在值中嵌入"/"的URI段的最佳方法是什么?例如,我传递的端口号看起来像"abc1/1"。

谢谢。

好问题顺便说一句,

有很多方法可以解决你的问题。但我更喜欢用:
$this->uri->uri_to_assoc();

我假设以下url为您的情况:

http://localhost/nearest/nearest/index.php/welcome/testUri/x/1/abc1/1/gg

所以你可以在你的控制器中这样做:

$array= $this->uri->uri_to_assoc(3); // getting from third segment and after
var_dump($array);

将输出:

array (size=3)
  'x' => string '1' (length=1)
  'abc1' => string '1' (length=1) //here's your argument combined as key => value
  'gg' => boolean false

所以简单地你可以得到你的段然后使用这个"key, value"数组