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?
|
Is it possible to count the amount of items prepared from the preg_split function? Example: Lets Say
So:
Is it even possible to count these?
| |||
|
feedback
|
|
I suggest you use
It is much less computational demanding. | |||
|
feedback
|
|
Alternative, there is also | |||
|
feedback
|