函數str_rot13()是php中的內置函數。此函數接受一個字符串,並將字符串中存在的每個字母移動13個字母。該函數使數字和非字母字符保持不變。通過傳遞編碼的字符串作為參數,該函數將返回原始字符串。
用法:
str_rot13 ( $string )
參數:此函數僅接受可以從上述語法中觀察到的字符串參數。參數說明如下。
- $string : 這是該函數的唯一必需參數。此參數將字符串傳遞給需要編碼的函數。
返回值:該函數返回編碼後的字符串。
例子:
Input : $string = "Geeks for Geeks" Output : Trrxf sbe Trrxf Input : $string = "Trrxf sbe Trrxf" Output : Geeks for Geeks
以下示例程序旨在說明PHP中的str_rot13()函數:
<?php
echo str_rot13("Geeks for Geeks");
echo "\n";
echo str_rot13("Trrxf sbe Trrxf");
?>
輸出:
Trrxf sbe Trrxf Geeks for Geeks
參考:
http://php.net/manual/en/function.str-rot13.php
相關用法
- p5.js day()用法及代碼示例
- PHP dir()用法及代碼示例
- PHP each()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js second()用法及代碼示例
- p5.js int()用法及代碼示例
- d3.js d3.max()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- p5.js str()用法及代碼示例
- p5.js arc()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- d3.js d3.lab()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP | str_rot13() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。