What will the following code print out?
$str = '✔ one of the following';
echo str_replace('✔', 'Check', $str);
Check one of the following
one of the following
✔ one of the following
Submit