Is it possible to count the amount of items prepared from the preg_split function?

Example:

Lets Say $_REQUEST['p'] = Index/Home

$str = preg_split('(/)', $_REQUEST['p']);

So:

$str[0] = Index
$str[1] = Home

Is it even possible to count these?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

I suggest you use explode instead preg_split to this simple split procedure.

$tokens = explode('/', $_REQUEST['p']);
echo count($tokens); // counting tokens

It is much less computational demanding.

link|improve this answer
feedback

preg_split will return an array, so a simple count would do.

$str = preg_split('(/)', $_REQUEST['p']);

echo 'There are ' . count($str) . ' occurrences';

Alternative, there is also substr_count to count the number of occurrences in a string.

link|improve this answer
cool thanks sir. – rackemup420 Nov 25 '11 at 20:21
feedback

Your Answer

 
or
required, but never shown

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