eine Zeichenfolge in PHP umkehren
<?php
echo strrev("Hello World!");
?>
Harendra
<?php
echo strrev("Hello World!");
?>
strrev ( string $string ): string
$strrev = strrev($str);
www.deopp.it
@ncl.a
<?php
echo strrev("Hello world!"); // outputs "!dlrow olleH"
?>
#Text must be in double quotes in brackets
echo strrev("Text goes here");
strrev("web learn smart");