溫馨提示×

php字符串反轉(zhuǎn)函數(shù)的用法

木子
251
2021-05-12 16:17:04
欄目: 編程語言

php字符串反轉(zhuǎn)函數(shù)用法: 在php中可以調(diào)用strrev()函數(shù)反轉(zhuǎn)字符串。

php字符串反轉(zhuǎn)函數(shù)的用法

調(diào)用strrev()函數(shù)反轉(zhuǎn)字符串需注意語法:strrev(string),string是必需的,規(guī)定反轉(zhuǎn)字符串。

具體代碼如下:

<?php 

echo strrev("Hello"); 

?>


0