(PHP 4, PHP 5, PHP 7)
strrev — Reverte uma string
$string
)
Retorna a string
revertida.
string
A string a ser revertida.
Retorna a string revertida.
Exemplo #1 Revertendo uma string strrev()
<?php
echo strrev("Hello world!"); // mostra "!dlrow olleH"
?>