Home Backend Development PHP Tutorial Example of using gettext to solve internationalization problems in PHP (i18n)_PHP tutorial

Example of using gettext to solve internationalization problems in PHP (i18n)_PHP tutorial

Jul 13, 2016 am 10:28 AM
gettext i18n php globalization

There are many ways to achieve internationalization. Many PHP frameworks have built-in i18n support, but most of them are based on PHP arrays. This method is not recommended. Currently the most popular and versatile method is gettext.

Gettext is used for system internationalization (I18N) and localization (L10N). You can use Native Language Support (NLS) when compiling the program, which can make the output of the program use the language set by the user. Instead of English. For more information about gettext, please see: Let's talk about how to use gettext to achieve internationalization in your PHP program.


1. Check environmental requirements First check phpinfo() to make sure your PHP has the gettext extension enabled. If gettext is enabled, you should see the following information in the phpinfo page:
Example of using gettext to solve internationalization problems in PHP (i18n)_PHP tutorial

If not found, please modify php.ini to enable the extension

2. Create a new locale folder for your project gettext involves two files, *.po is the translation The source file stores all the strings to be translated and the translated results in the project; the *.mo file is the binary file compiled from the po file. When the translation information is actually read, it is read from the mo file, so this Documentation is also essential. Gettext has strict directory requirements. You must put the internationalized files in the specified directory. Most of the failures in using gettext are due to the po file and mo file not being placed in the right location. Here is an example of a typical project directory tree:

Example of using gettext to solve internationalization problems in PHP (i18n)_PHP tutorial

3. Initialize the i18n environment This is mainly a simple setting on the program side. Here is a simple example:

Copy code The code is as follows:

< ?php
//Define the target language and po file to be translated Encoding
$locale = "zh_CN.utf8";
setlocale(LC_ALL, $locale);

//Set the translation text domain. The following code will let the program go to locale/zh_CN/LC_MESSAGES/default.mo to find the translation file
bindtextdomain("default", dirname(__FILE__)."/locale") ;
textdomain("default");
?>

< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
< ; ?php echo _("Hellon");; ?>



4. Create po file

There are many ways to get to this step. Of course, you can create it manually. However, the biggest disadvantage of this is that you don’t know which strings in the project need to be translated. Here is the next software recommended - PoEdit, both for Windows platform and Linux. is applicable.

Select File->Create a new message catalog document and fill in some necessary information. Note that if the target language is Chinese, since Chinese is a double-byte character, it is best to fill in "nplurals=2; plural=(n!=1);” (without quotation marks), as shown below

Example of using gettext to solve internationalization problems in PHP (i18n)_PHP tutorial

Then add the folder where the project is located to the "path", set the keywords used for translation, and PoEdit will automatically search for all strings to be translated in the project and generate the po file . After the translation is completed, select "Save" and PoEdit will automatically generate the mo file. In the future, every time the string to be translated in the project is updated, just open PoEdit and select the category -> Update from source. This idea is not only applicable to PHP, but is similar to other languages. I did the translation of a Django project some time ago. It's just that it's more convenient to create the po file, and the other steps are very similar. Just draw inferences from one example, and pay special attention to the directory structure, which is where problems are most likely to occur.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/802216.htmlTechArticleThere are many ways to achieve internationalization. Many php frameworks have built-in i18n support, but most of them are based on PHP arrays. Implementation, this method is not recommended. Currently the most popular and versatile...
Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles