IntlChar::islower()函数是PHP中的内置函数,用于检查给定的输入字符是否为小写字符。
用法:
bool IntlChar::islower( $codepoint )
参数:此函数接受单个参数$codepoint,这是必需的。输入参数是一个字符,它被编码为UTF-8字符串。
返回值:如果$codepoint是小写字符,则返回True,否则返回False。
以下示例程序旨在说明PHP中的IntlChar::islower()函数:
程序1:
<?php
// PHP code to illustrate IntlChar::islower()
// function
// Input data is character type
var_dump(IntlChar::islower("a"));
var_dump(IntlChar::islower("A"));
var_dump(IntlChar::islower("\u{0041}"));
// Input data is control character
var_dump(IntlChar::islower("\t"));
// Input data is string type
var_dump(IntlChar::islower("Geeksforgeeks"));
// Input data is number type
var_dump(IntlChar::islower("2018"));
// Input data is single digit
var_dump(IntlChar::islower("5"));
?>
输出:
bool(true) bool(false) bool(false) bool(false) NULL NULL bool(false)
注意:如果将字符串和数字(一位数字除外)用作参数,则它将返回NULL。
程序2:
<?php
// PHP code to illustrate IntlChar::islower()
// Declare an array $arr
$arr = array("a", "\u{FF41}", "A", "\u{0041}", "0", "\n", "123", "Geeks");
// \u{0041} is ASCII value of 'A'
// \u{FF41} is ASCII value of 'a'
// Loop run for every array element
foreach ($arr as $val){
// Check each element as code point data
var_dump(IntlChar::islower($val));
}
?>
输出:
bool(true) bool(true) bool(false) bool(false) bool(false) bool(false) NULL NULL
相关文章:
- PHP | IntlChar::isupper()函数
- PHP | IntlChar::isdigit()函数
- PHP | IntlChar::isalnum()函数
- PHP | IntlChar::isalpha()函数
参考:http://php.net/manual/en/intlchar.islower.php
相关用法
- d3.js d3.lab()用法及代码示例
- PHP exp()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP sin( )用法及代码示例
- PHP abs()用法及代码示例
- PHP cos( )用法及代码示例
- PHP tan( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- d3.js d3.sum()用法及代码示例
注:本文由纯净天空筛选整理自Mithun Kumar大神的英文原创作品 PHP | IntlChar::islower() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。