字符串 setlocale() 函数是 PHP 的内置函数。用于设置本地信息。如果未实现区域设置函数,则返回新的当前区域设置和 False。
注意:它的返回值取决于系统。
用法:
Setlocale(constant,location);
参数 | 描述 | 必需/可选 |
---|---|---|
constant | 指定要设置的本地信息。以下常数:
|
required |
Location | 指定要设置本地信息的国家/地区。 | Required |
例子1
<?php
$location="US";
echo "Your Location is:".$location;
echo "<br>";
echo "By using setlocale() function:".setlocale(LC_ALL,"$location");
?>
输出:
Your Location is:US By using setlocale() function:English_United States.1252
例子2
<?php
echo "Your Location is:NULL";
echo "<br>";
echo "By using setlocale() function:".setlocale(LC_ALL,NULL);
?>
输出:
Your Location is:NULL By using setlocale() function:English_United States.1252
相关用法
- PHP string sha1()用法及代码示例
- PHP string sha1_file()用法及代码示例
- PHP string str_repeat()用法及代码示例
- PHP string str_shuffle()用法及代码示例
- PHP string similar_text()用法及代码示例
- PHP string str_ireplace()用法及代码示例
- PHP string str_split()用法及代码示例
- PHP string strcoll()用法及代码示例
- PHP string str_rot13()用法及代码示例
- PHP string str_pad()用法及代码示例
- PHP string strip_tags()用法及代码示例
- PHP string strchr()用法及代码示例
- PHP string str_word_count()用法及代码示例
- PHP string strcasecmp()用法及代码示例
- PHP string strcmp()用法及代码示例
- PHP string rtrim()用法及代码示例
- PHP string printf()用法及代码示例
- PHP string ord()用法及代码示例
- PHP string join()用法及代码示例
注:本文由纯净天空筛选整理自 PHP string setlocale() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。