06/04/2021, 14:46
Hàm strrev() trong PHP - PHP Function
Code echo strrev('this is a test') . "<br />"; echo strrev('Zaidap.com.net') . "<br />"; echo strrev('hello world') . "<br />"; echo strrev('this is my example') . "<br />";
Hàm strrev()
sẽ đảo ngược chuỗi được truyền vào.
Hàm trả về chuỗi bị đảo ngược so với chuỗi ban đầu.
Cú pháp
Cú pháp: strrev( $str);
Trong đó:
$str
là chuỗi cần đảo ngược.
Ví dụ
Code
echo strrev('this is a test') . "<br />"; echo strrev('Zaidap.com.net') . "<br />"; echo strrev('hello world') . "<br />"; echo strrev('this is my example') . "<br />";
Kết quả
tset a si siht ten.stuteerf dlrow olleh elpmaxe ym si siht
Tham khảo: php.net
Nguồn: Zaidap.com.net