Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
joomla iam では、この php コードを使用して joomla で言語プレフィックスを取得します。
$lang = substr(JFactory::getLanguage()->getTag(), 0,2)
このコードが行うことは、接頭辞の言語を抽出することです:
es fr en it
このコードに何かを追加する必要があるため、抽出された = en が削除された場合
条件なしで1行で必要な場合:
$lang = str_replace('en', '', substr(JFactory::getLanguage()->getTag(), 0, 2));