*strrev:*意思是按字节反转字符串的(英文字母一个是一个字节)

<?php
//按字节反转的
print strrev("this is not a problem!");
?>