ben bir dize var.
i her kelimeyi kelime sırasını ters değil harfleri ters istiyorum.
gibi - 'benim dize'
olmalıdır
'Ym gnirts'
Ben yapardı:
$string = "my string";
$reverse_string = "";
// Get each word
$words = explode(' ', $string);
foreach($words as $word)
{
// Reverse the word, add a space
$reverse_string .= strrev($word) . ' ';
}
// remove the last inserted space
$reverse_string = substr($reverse_string, 0, strlen($reverse_string) - 1);
echo $reverse_string;
// result: ym gnirts