亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

? ??? ?? PHP ???? ?? ????? GetText ?? ??

?? ????? GetText ?? ??

Feb 22, 2025 am 08:51 AM

Managing Gettext Translations on Shared Hosting

?? ???

GetText? PHP ? ???? ?? ????? ???? ????? ??? ??? ????. Apache Caches Translations? ??? ?? ???? ??? ?? ? ??? ?? ????? ???? ????. ??? ??? ??? ? ?? ??? ??? ?? ???? ?? ??????.

> Audero Shared GetText? ???? GetText () ??? ???? ? Apache? ?? ??? ?? ? ??? PHP ????????. ? ?????? ??? ??? ???? ?? ??? ?? ??? ??? ???? ??? ????? ???? ???? ?? ??? ????.
    > Audero ?? GetText? ???, GIT ?? ????? ????? ?????? ??? ? ????. ?? ? ???? Composer? ?? ??? ???? ???? ???????? SharedGette ????? ?? ? ????.
  • ? ?????? ?? ????? ???? CC By-NC 4.0 ????? ?? ????? ??? ????? PHP 5.3 ??? ?????. ? ?? ?? ??? updatetranslation ()??, ?? ??? ?? ? ??? ???? DeleteOldTranslations ()? ?? ?? ??? ??? ??? ?? ??? ?? ??? ???? DeleteOldTranslations ()???.
  • ?? ???? ?? ?? ??? ? ????? ?? ? ????. ? ??? ?? ? ???? ?? ??? ??? ?? ? ???? ??? ????. ????? ??? ???? ?? ??? ??? ? ??? ??? ???? ? ??? (?? ???? ???? ??)? ??? ???? ???? ? ?? ????. ????? ???? ???? ?? ??? ??? ??? ??? ???? ?? ? ???? ???? ?? ??? ?????. PHP?? ?? ???? ??? getText? ?? ????. ?? ?? ?????? ??? ???? ????? ???? ?????? ??? ??? ??????. ??? Apache? ??? ????? ????. ??? ?? ??? ? ??? ?? ??? ?? ????? ???? ????. ? ??? ?? ??? ????? ??? ??? ??? ?? ??? ????. ? ?????? ??? ??? ?? ??? ??? ??? ???? ?? ? ????.
  • ?? :
  • i18N, Translation and GetText? ??? ???? ???? ??? ? ??? ???? ??? ???? ?? ?? ????. ???? ?? ??? ???? ? ??? ??? ???? ??? ??? ? ? ???? ? ??????.
  • ?? ??
PHP?? ??? ???? ???? ?? ??? ????. ?? ??? ??? ?? ?? ??? ?? ? ?? ???? ???? ?? ??? ?? ?? ???? ??? ???? ???? ????. ??? ?? ? ? ???,? ???? ?? ???? ??? ?? ?? ???? (5 ?? ??? ?? ??)?? ???? ?? ?? ???? ???? ??????. ??? ??? ?? getText? ??? ? ????. ? ???? ???? ? ?? ??? ?? ?? ??? ?? ? ???? ???? ??, ?????? ?? ? ?? ?? ??? ???? ? ?????? (??? ??? ??? ?? ????? ??? ? ??). GetText? ???? ? ???? ?? ??? ?? ? ? ???? Poedit? ?? ?????? ???? ?? ? ? ?? ??? ????? ??? ? ? ????.

??? ?? ????? ??? ???????. ?? ??? (? : "??")? ?? ??? ??? ?? ??? ????. ????, ??? ? ?? ??? ?? ??? ??????, ?? ??? ISO 3166 ??? ???????. ??? ???? ??? ??? ??? "it_it"(???? ????), "it_ch"(???? ???), "en_us"(?? ??) ?? ? ? ????. ?? ????? ???? ?? ??? ??? "LC_MESSAGES"?? ??? ??????.

Poedit? ? ???? ?? ??? ???? ??????? ?? ? ?? ??? ??? ???? ?? ? ???? ?????. ????? (?? ???)? ???? .mo ??? ????? ??? .po (??? ??)? ?? ?? ??? ???? ?????. ??? PHP? getText () ??? ????? ?????. .MO ??? ??? ??? "LC_MESSAGES"????? ???? ? ?????.

getText ()? ??? ?? ??? ??? ???? (??? ??? ??? ? ??? ??? ??? ? ????) :

???? ?? ??? ???? ??????? ? ? getText ()? ?? ??? ?? ? ??? ???? ?? ??? ?????.

???? ?? ?? ??????. ?? ??? ??????? Apache? ????? ????. ??? ??? ?? ??? ? ??? ?? ??? ?? ????? ???? ????. ??? ?? ??? ????? ??? ????? ?? ?? ??? ????. ? ??? ???? ??? Audero ?? GetText? ??? ??!

audero ?? gettext > audero shared gettext? PHP ????? (??? ?????? ?? ?????)? Apache? ???? getText () ??? ???? ? ?? ??? ?? ? ? ????. ? ?????? ???? ???? ?? ??? ???? ?? ?? ??? ?????. Audero Shared GetText? ?? ????? ???? ?? ??? ?? ? ??? ?? ??? PHP 5.3 ??? ?????. UpdateTranslation () ? DeleteOldTranslations ()? ? ?? ?? ??? ????. ??? ???? ?? ??? ??? ???? ????????. ???? ??? ?????? ??? ??? ??? ?? ?????. ??? ??? ???? ??, ???? ???? ??? ???? ??, ?? ? ?? ? ?? ? ??? ?? (???)? ????? ?? ?? ? ??? ????.

? ??? ?? ???? ? ?? ?? ???? ?? ?? (.MO ??)? ????? ????? ????. ???? ??? ???? ??? ????. ?? ?? ????? ??? ?? ??? ??? ??? ?? ? ?? ???? ???? ?? ? ??? ?? ??? ?????. ? ?, ??? ?? ? ?? ???? ?? ???? ???? ? ???? ????. ?? ???? ???? ??? ????.? ??? ?? ??? ?? ??? ????. ??? ????? ??? ?? ???? ??, ????? ??? ?? ??? ?????. ????? BindTextDomain (), bind_textDomain_codeset () ? textDomain ()?? ??? ? ??? ?????. ????? Apache? ??? ?? ??? ??? ???? ?? ??? ?? ? ??? ?? ? ? ????. ?? ???? ???? ??????!
<?php
// 包含翻譯文件的根文件夾的名稱(chēng)
$translationsPath = 'languages';
// 要翻譯到的語(yǔ)言
$language = 'it_IT';
// 翻譯文件的名稱(chēng)(在gettext中稱(chēng)為域)
$domain = 'audero';

// 指示此會(huì)話(huà)將使用哪種語(yǔ)言
putenv("LANG=" . $language);
setlocale(LC_ALL, $language);

// 設(shè)置當(dāng)前域的路徑
bindtextdomain($domain, $translationsPath);
// 指定字符編碼
bind_textdomain_codeset($domain, 'UTF-8');

// 選擇域
textdomain($domain);

// 調(diào)用gettext()函數(shù)(它有一個(gè)名為_(kāi)()的別名)
echo gettext("HELLO_WORLD"); // 等效于echo _("HELLO_WORLD");
?>
"Great Aurelio!" ??? ?? deleteoldtranslations ()? ?? ?????. ??? ?? ??? ??? ??? ?? ??? ?? ?? ??? ?????.

?? Audero? GetText? ?? ? ??? ??? ??? ?? ??? ? ? ??? ????? ??? ?? ??? ?? ?????.

<<>> Audero ?? getText

?? < "> ??? ???? ??"audero shared gettext "? ?? ? ??? Composer.json? ?? ?? ?? ? ? ????.

?? ?? ?? ??? ???? ?? ???? ???? ???????.

Composer? ????? ?? ??/Audero ????? ?????? ?????.

Composer? ???? ?? ??? (????????) ?? ??? ???? Audero ?? GetText? GIT? ?? ?? ? ????.

??? ??? ???? ????? ????? ?????? ????. <<> Audero ?? GetText? ???? ??

Composer? ???? Audero ?? GetText? ??? ? ?? ?????. ?? Autoloader? ???? ???? ?????? ? ? ????. ?? ?? SharedGetTex ????? ???? ??? ???? ???????. ?? ??? ?? ??? ?? ? ?? ? ??? ??? ? ????.

/**
 * 創(chuàng)建翻譯文件的鏡像副本
 *
 * @return string 創(chuàng)建的翻譯文件的名稱(chēng)(在gettext中稱(chēng)為域)
 *
 * @throws \Exception 如果找不到翻譯文件
 */
public function updateTranslation()
{
    if (!self::translationExists()) {
        throw new \Exception('在給定路徑中找不到翻譯文件。');
    }
    $originalTranslationPath = $this->getTranslationPath();
    $lastAccess = filemtime($originalTranslationPath);
    $newTranslationPath = str_replace(self::FILE_EXTENSION, $lastAccess . self::FILE_EXTENSION, $originalTranslationPath);

    if(!file_exists($newTranslationPath)) {
            copy($originalTranslationPath, $newTranslationPath);
    }

    return $this->domain . $lastAccess;
}
??

? ??? Apache? ???? getText () ??? ???? ? ?? ??? ?? ? ??? ??? ????? (Well ... ???) ? Audero Shared GetText? ?????. Audero Shared GetText? ?? ????? ???? ??? ??? PHP 5.3 (??? ????????)? ???? ??? ???? ???? ??? ????. ???? ?? ? ?? ? ??? ???? ???? ????? ?? ? ?? ? ??? ??????. CC By-NC 4.0 ????? ?? Audero Shared GetText? ???? ??? ??? ? ????.

? ??? ?????? ??? ?? ????? ?????? ?? ??? ???? ??????!

(??? FAQ ????, ?? ???? ???? ?? ????? ?? ???? ????? ????)

?? ????? GetText Translation? ?? ? ? FAQ (FAQ)

?? ???? GetText? ???? ??? ?????? ?? ???? getText? ???? ?? ?? ???? ?? ? ???? ?? ???? ? ????. ??? ??? CPANEL ?? PLESK? ?? ??? ? ????. CPANEL??? SELECT PHP ?? ???? GetText? ????? ??? ?? ? ????. Plesk??? "PHP ??"???? ??? ? ? ????. ? ??? ?? ??? ?? ??? ?? ??? ???? ??? ???? ? ?? ????. ? gettext ??? ???? ?? ??? ??????

GetText ??? ? ?? ??? ???? ????. ???? ??? .MO ??? ???? ????? ???? ?? ??? ???? ??? ????. .MO ??? ??? ????? ?? ??? ?? ??? ???? ??????. ? ?? ??? ???? ???? ???? ???? ???? ????. Locale -a ???? ??? ??? ? ????.

GetText Translation? ????? ??? ?????? ??? GetText Translation? .po ? .mo ??? ??? ???? GetText Translation? ?? ? ? ????. Poedit? ?? ??? ???? ??? ??? ?? ?? ??? ??? ? ????. ?? ???? GetText ??? ???? ??? ???? ?? ??? ??? ? ????. ??? ?? ???? ???? ??? ?? ? ????. WordPress?? getText? ??? ? ?????

?, WordPress?? getText? ??? ? ????. WordPress? GetText? ??? ??? ??? ?????. WordPress?? __ () ? _e () ??? ???? ????? ? ????. ??? ??? ??????? getText? ?????.

? gettext ??? ?????? ??? ??????

.PO ??? ???? ? ?? .MO ??? ????? GetText ??? ???? ? ? ????. .po ??? ?? ??? ???? ?? ? ??? ?? ??? ?????. ??? ???? Poedit? ?? ??? ???? .po ??? .mo ??? ??? ? ? ????.

"??? php-gettext? ?? ? ??"??? ???? ??? ??????

? ??? ????? ??? ???? ????? ???? ??? ??? ??? ?????. sudo apt-get update ??? ???? ??? ??? ???? ? ? ????. ??? ???? ?? ???? ????? ???? ???? ???? ? ?? ????.

PHP?? getText? ???? ??? ??????

getText ??? ???? PHP?? getText? ??? ? ????. ? ??? ???? ??? ???? ?? ? ???? ?????. ? ??? ???? ?? SetLocale ??? ???? ??? ??? ???? BindTextDomain ??? ???? .MO ???? ??? ???????.

????? getText? ??? ? ?????

?, Ubuntu?? getText? ??? ? ????. sudo apt-get install getText ??? ???? ??? ? ????. ?? ? ???? getText ??? ???? .po ? .mo ??? ?? ? ? ??????.

<.> .po ? .mo ??? ??? ??? ??????

<.> Poedit? ?? ??? ???? .po ? .mo ??? ?? ? ????. ? ??? ???? .po ??? ???? ???? ???? .MO ??? ??? ? ? ????. ??? ???? ???? ???? .po ??? ?? ?? ??? .mo ??? ?????? Poedit ?? MSGFMT? ?? ??? ?????.

.po? .mo ??? ???? ??????

.po ??? ?? ???? ?? ??? ?? ? ?? ??? ?????. ??? ???? ???? ??? ?? ? ? ????. ?? .MO ??? .po ???? ?? ? ?? ?????. getText?? ???? ??? ?? ? ?????.

? ??? ?? ????? GetText ?? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? ????? ??
? ?? ??? ????? ???? ??? ??????, ???? ?????? ????. ? ???? ?? ???? ?? ??? ?? ????. ???? ??? ???? ???? ??? ?? admin@php.cn?? ?????.

? AI ??

Undresser.AI Undress

Undresser.AI Undress

???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover

AI Clothes Remover

???? ?? ???? ??? AI ?????.

Video Face Swap

Video Face Swap

??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

???

??? ??

???++7.3.1

???++7.3.1

???? ?? ?? ?? ???

SublimeText3 ??? ??

SublimeText3 ??? ??

??? ??, ???? ?? ????.

???? 13.0.1 ???

???? 13.0.1 ???

??? PHP ?? ?? ??

???? CS6

???? CS6

??? ? ?? ??

SublimeText3 Mac ??

SublimeText3 Mac ??

? ??? ?? ?? ?????(SublimeText3)

???

??? ??

??? ????
1597
29
PHP ????
1488
72
NYT ?? ??? ??
131
836
???
PHP ?? ??? ??????? PHP ?? ??? ??????? Jul 17, 2025 am 04:16 AM

PHP ?? ??? ?? ???? ?? ? ????? ??? ?????. 1. ?? ??? ??? ??? ??? ? ? ??? ??? ??? ?? ?? ??? ???? ???????. 2. ?? ??? ???? ???? ? ?? ????? ?? ?? ?? ??? ?????. 3. $ _get ? $ _post? ?? Hyperglobal ??? ?? ???? ?? ??? ? ??? ??? ??????? ???????. 4. ?? ?? ?? ???? ?? ?? ?? ??? ?????? ?? ??? ??? ?? ??? ???????. ??? ??? ????? ??? ??? ?? ???? ????? ? ??? ? ? ????.

PHP?? ?? ???? ???? ???? ??? ?????? PHP?? ?? ???? ???? ???? ??? ?????? Jul 08, 2025 am 02:37 AM

PHP ?? ???? ???? ????? ?? ? ??? ???? ?? ?? ? ??? ???? ?? ??? ?????? ??? ??? ? ? ???????. 1. ??? ?? CSRF? ???? ?? ??? ??? ???? ?????? ??? ???? FINFO_FILE? ?? ?? MIME ??? ?????. 2. ??? ??? ??? ???? ??? ?? ??? ?? ? WEB ????? ??? ???? ??????. 3. PHP ?? ??? ?? ? ?? ???? NGINX/APACHE? ??? ????? ?? ???? ?????. 4. GD ?????? ??? ? ?? ???? ??? ?? ??? ?? ????.

PHP?? ?? ?? PHP?? ?? ?? Jul 18, 2025 am 04:57 AM

PHP ?? ???? ? ?? ???? ??? ????. 1. // ?? #? ???? ? ?? ??? ???? // ???? ?? ????. 2. ?? /.../ ?? ?? ?? ??? ????? ?? ? ?? ??? ?? ? ? ????. 3. ?? ?? ?? / if () {} /? ?? ?? ??? ????? ??? ?? ?? ?? ??? ???? ????? ???? ??? ?? ???? ???? ??? ? ??? ??????.

PHP?? ???? ??? ?????? PHP?? ???? ??? ?????? Jul 11, 2025 am 03:12 AM

Ageneratorinphpisamemory- ???? Way-Erate-Overgedatasetsetsbaluesoneatimeatimeatimeatimallatonce.1.generatorsuseTheyieldKeywordTocroadtOpvaluesondemand, RetingMemoryUsage.2

PHP ?? ?? ? PHP ?? ?? ? Jul 18, 2025 am 04:51 AM

PHP ??? ???? ??? ??? ??? ????? ????. ??? ????? ?? ???? ??? "?? ? ?"??? "?"? ???????. 1. ??? ? ??? ??? DocBlock (/*/)? ?? ?? ??? ???? ??? ? ?? ???? ??????. 2. JS ??? ???? ?? ???? ??? ?? ??? ??? ?????. 3. ??? ?? ?? ?? ??? ???? ????? ????? ???? ?? ????? ???? ? ??????. 4. Todo ? Fixme? ????? ???? ? ? ??? ??? ???? ?? ?? ? ??? ???????. ??? ???? ?? ??? ??? ?? ?? ?? ???? ???? ? ????.

?? PHP ?? ??? ?? PHP ?? ??? Jul 18, 2025 am 04:52 AM

toinstallphpquickly, usexampponwindowsorhomebrewonmacos.1. ??, downloadandinstallxAmpp, selectComponents, startApache ? placefilesinhtdocs.2

PHP?? ??? ? ???? ??? ????? ?? PHP?? ??? ? ???? ??? ????? ?? Jul 12, 2025 am 03:15 AM

PHP??? ???? ??? ?? ?? ????? ???? ??? ?? ??? ??? ?? ? ??? ??? ???? ?????. ???? 0?? ???? ?? ??? ???? ? ?? ???? ?? ?? ? ? ????. MB_SUBSTR? ?? ??? ??? ???????. ? : $ str = "hello"; echo $ str [0]; ?? H; ??? MB_SUBSTR ($ str, 1,1)? ?? ??? ??? ??? ??????. ?? ???????? ???? ??? ???? ?? ???? ?? ?? ???? ?????? ??? ????? ?? ??? ?? ??? ???? ???? ?? ????.

?? PHP : ??? ??? ?? PHP : ??? ??? Jul 18, 2025 am 04:54 AM

tolearnpheffectical, startBysetTupaloCalserErverEnmentUsingToolslikexamppandacodeeditor -likevscode.1) installxamppforapache, mysql, andphp.2) useacodeeditorforsyntaxsupport.3)) 3) testimplephpfile.next, withpluclucincludechlucincluclucludechluclucled

See all articles