字符串 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。