Briefing Zend Knowledge

What will the function call return?

Consider the following code:
<code>
strspn($test, ‘aeiou’, 1);
</code>
The variable $test contains the string “You get certified”.
What will the function call return?

A.
true

B.
false

C.
0

D.
1

E.
2

F.
3