strtolower_PHP strtolower()函数与示例
生活随笔
收集整理的這篇文章主要介紹了
strtolower_PHP strtolower()函数与示例
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
strtolower
PHP strtolower()函數(shù) (PHP strtolower() function)
strtolower() function is a string function, it accepts the string and returns an lowercase string.
strtolower()函數(shù)是一個(gè)字符串函數(shù),它接受該字符串并返回小寫字符串。
Syntax:
句法:
strtolower(string);Example:
例:
Input: "This is my COMPUter!"Output: "this is my computer!"PHP code:
PHP代碼:
<?PHP$str = "This is my COMPUter!";echo (strtolower($str)); ?>Output
輸出量
this is my computer!翻譯自: https://www.includehelp.com/php/strtolower-function-with-example.aspx
strtolower
總結(jié)
以上是生活随笔為你收集整理的strtolower_PHP strtolower()函数与示例的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: linkedhashset_Java L
- 下一篇: rotate array_Array.r