Gurzi Posted April 6, 2008 Share Posted April 6, 2008 You could just as easily use explode to place the variables into local scope. but you they initialize the vars ? where they make something like this $name = $array['name']; ? explode returns an array :s Quote Link to comment Share on other sites More sharing options...
redbullmarky Posted April 6, 2008 Share Posted April 6, 2008 i think thorpe meant 'extract() which takes an associative array and creates variables of same name as key in the local scope. <?php $myarray = array( 'dog' => 'woof', 'cat' => 'miaw' ); extract($myarray); echo $dog; // outputs 'woof' echo $cat; // outputs 'miaw' ?> Quote Link to comment Share on other sites More sharing options...
Gurzi Posted April 6, 2008 Share Posted April 6, 2008 ah ok! nice very cute thanks a lot :) Quote Link to comment Share on other sites More sharing options...
trq Posted April 6, 2008 Share Posted April 6, 2008 Sorry, indeed I did meen extract. Having a hard time posting between actual work tonight Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.