search
PHP setlocale()Aug 29, 2024 pm 12:51 PM
php

The PHP setlocale() Function of PHP language is one of the important in-built function and it is helpful in setting the local or locale information. The PHP setlocale() function usually returns the current new locale and if the locale’s functionality is not at all implemented then it is considered as FALSE. Locale/Local information of the setlocale() function of PHP language can be monetary, language, time, or any other info which is very specific for a specific geographical area. The locale can be changed only for the new/current script with the help of setlocale() function. We can also set the locale info to the system default with specific parameters of setlocale() function.

ADVERTISEMENT Popular Course in this category PHP DEVELOPER - Specialization | 8 Course Series | 3 Mock Tests

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

Syntax and Parameters

Syntax and parameters of php setlocale() are given below:

Setlocale(constant1, location1);

Constant Parameter of setlocale(): The constant parameter is a mandatory one which is used inside of the setlocale() function of PHP language. It specifies the locale info which is to be set. There are some of the available constant parameter values which are useful a lot in the PHP programming sometimes. They are:

  • LC_ALL: It means “All the below”
  • LC_COLLATE: It means “Sort order”
  • LC_CTYPE: It means “Character conversion and Classification” (example: all the characters of it show be upper or lower case)
  • LC_MESSAGES: It means “System message Format/Formatting”
  • LC_MONETARY: It means “Currency/Monetary Formatting”
  • LC_NUMERIC: It means “Number/Numeric Formatting”
  • LC_TIME: It means “time and Date formatting”

Location Parameter of setlocale(): The location parameter of the setlocale() function of PHP is also an important and mandatory parameter that should be used in setlocale() function. It easily specified what region/country is to be set to the locale information. It can either be an array or a string. It is only possible to pass to multiple locations. If the location is the NULL or empty string (“”) then the location values/names will be set from the environment variable values with the same names as the constants above or from the “LANG”. If the location value is set the value “0” then the location’s setting will not be affected and only the current setting will be returned.

If the location value is an array, the setlocale() function will try each and every array element until it is going to find a valid region code or a valid language. This is very much useful if and only if the region is known under many different systems or names. There are many language codes available for this setlocale() function.

How setlocale() Function works in PHP?

The setlocale() function of the PHP programming language usually works by returning the locale information with the help of the two mandatory parameters. It just returns the locale information/info. The return value of the setlocale() function is the current locale settings but on failure, FALSE will be returned. The value/return value will depend on the PHP System that is actually running. The setlocale() needs PHP 4.0+ versions to produce an output. In PHP 5.3.0 version, if the string content is passed to the specific constant parameter which is instead of the LC_constants, then this function will throw E_DREPRECATED notice.

Examples of PHP setlocale()

Following are the examples are given below:

Example #1

This is the example of implementing the setlocale() function for the location “US”. Here at first PHP tags are created to enter the code which we want to implement. Then hr tag is used after echo statement to print a horizontal line. Then the “location1” variable is created with the string value “USA”. Then location1 variable’s value will be printed with the help of the echo statement. Then the “
” tag is used after echo statement to print a line break. Then setlocale() function of the PHP programming language is used just after the echo statement with the constant and location parameters. So it will print the locale information. Then “


” tag is used for the horizontal line just for the view.

Code:

<?php echo "<hr>";
$location1="USA";
echo "Your Location is:".$location1;
echo "<br>";
echo "By using the setlocale() function of PHP :: ".setlocale(LC_ALL,"$location1");
echo "<hr>";
?>

Output:

PHP setlocale()

Example #2

This is the example of implementing the setlocale() function of the PHP Programming Language with the NULL value mentioning. Here at first, PHP tags are used to enter the code for the PHP coding language. Then “


” tags are used two times to print two horizontal lines. Then “loc1” variable is created with NULL values inside of the inverted commas. Then location variable value will be printed with the help of the echo statement and the “loc1” variable value. Then “
” tag is used for the line break purpose just after the echo statement. Then setlocale() PHP function is used just after the echo statement with the two parameters with constant value as LC_ALL and the location variable as NULL. Check the output below once.

Code:

<?php echo "<hr>";
echo "<hr>";
$loc1 ="NULL";
echo "Your Location is: $loc1";
echo "<br>";
echo "By using setlocale() function:".setlocale(LC_ALL,$loc1);
echo "<hr>";
echo "<hr>";
?>

Output:

PHP setlocale()

Example #3

This is the example of implementing setlocale() function for the location value “US” and “NULL” just one after the other. Here at first, three times “


” tags are used to print horizontal lines 3 times just for view purposes. Then setlocale() function is used with the constant parameter “LC_ALL” and Location parameter value as “US”. Then
tag is used just after echo statement to print the line break. Then setlocale() function is used for the Location value “NULL”. Usually, for a NULL value, nothing doesn’t print but here NULL is used just after the usage of “US” in the before setlocale() function. So the output remains the same here just for an instance. Just check out the output so that you will understand.

Code:

<?php echo "<hr>";
echo "<hr>";
echo "<hr>";
echo "This is for the location variable value US :: ";
echo setlocale(LC_ALL,"US");
echo "<br>";
echo "At first NULL value produce output as the same previous one <br>";
echo "This is for the location variable value NULL :: ";
echo setlocale(LC_ALL,NULL);
echo "<hr>";
echo "<hr>";
echo "<hr>";
?>

Output:

PHP setlocale()

The above is the detailed content of PHP setlocale(). For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use