reverse string php code example
Example 1: reverse string in python
'hello world'[::-1]
'dlrow olleh'
Example 2: reverse a string in php
<?php
echo strrev("Hello World!");
?>
Example 3: strrev php
strrev ( string $string ): string
$strrev = strrev($str);
www.deopp.it
@ncl.a
Example 4: how to reverse a string in php
use strrev(); function