Neden strrev () php işlevi bir süredir çalışmıyor?

0 Cevap php

Ben dize bazı php özelliklerini test ediyorum ama çalışmıyor.

Bu benim kodudur:

$string = "L'eau est claire.";   
$string2 = explode(' ', $string);  

$count = count($string) - 1;  
while ($i <= $count)  
{   
  strrev($string2[$i]);  
  $i++;  
}

$string3 = implode (' ', $string2);  
echo $string3;   

I tried the function strrev out the while and it does work.
Can you give me a clue?
Thanks a lot.
Sorry for the English, I'm French.

0 Cevap