Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i couldn't find anything so i just wanted to take a url and then split it and turn it into key value pairs.

$url = 'http://domain.com/var/1/var2/2';

i am currently using a array_chunk on the path after using a parse_url

$u = parse_url($url);
$decoded = array_chunk($u['path'],2);

but it returns

array (
   [0] => array (
       [0] => var
       [1] => 1
   ),
   [1] => array (
       [0] => var2
       [1] => 2
   )
)

what i would like is

array (
    [var] => 1,
    [var2] => 2
)

is there a Zend Framework method that is available to decode this into an array?

share|improve this question
1  
Probably the duplicate of stackoverflow.com/questions/2458539/… – akond Mar 1 '11 at 19:17
@akond yes you are correct! #winning! yes i used $route = Zend_Controller_Front::getInstance() ->getRouter() ->getCurrentRoute(); $params = $route->match( $url ); – James Lee Mar 4 '11 at 17:35

3 Answers

I'd use request object.

$url = 'http://domain.com/var/1/var2/2';
$request = new Zend_Controller_Request_Http($url);
$params = $request->getParams();
// or
$param = $request->getParam('var', $defaultValueNull);

This has the advantage, that you don't have to use isset to check which keys were set.

share|improve this answer
$u = parse_url($url);
$decoded = array_chunk($u['path'],2);
$new = array();
for ($decoded as $pair) {
    $new[$pair[0]] = $pair[1];
}
print_r($new);

outputs

array (
    [var] => 1,
    [var2] => 2
)
share|improve this answer
I think you mean $new[$pair[0]] = $pair[1]; – Michael Mar 1 '11 at 19:21
$new[ $pair[0] ] – hsz Mar 1 '11 at 19:21
@Michael & @hsz: thanks, corrected. – Jonah Mar 1 '11 at 19:22

If you're in the Controller it's simply

$data = $this->_getAllParams();
unset($data['module'], $data['controller'], $data['action']);

$data will now be

array (
    [var] => 1,
    [var] => 2
)

Hopefully you're not POSTing variables as well or this will also include the POST'd variables.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.