PHP - String Functions
What is the output of this PHP code?
$data = 'red|green|blue';
$colors = explode('|', $data);
echo count($colors);$data = 'red|green|blue';
$colors = explode('|', $data);
echo count($colors);15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions