Strings Php



Dividing a string into tokens with strtok()



$test = "php?id=353&sec=44&user=harry&context=php";
$delims = "?&";
$word = strtok( $test, $delims );
while ( is_string( $word ) ) {
 if ( $word ) {
   print "$word
";
 }
 $word = strtok( $delims );
}
?>