Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/vendor/wikimedia/bcp-47-code/src/Bcp47CodeValue.php
Ðазад
<?php /** * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * * @file */ namespace Wikimedia\Bcp47Code; /** * This is a simple value object demonstrating the simplest possible * implementation of the Bcp47Code interface. */ class Bcp47CodeValue implements Bcp47Code { /** * The BCP 47 code corresponding to this language. * @var string */ private $code; /** * Create a new instance of this value object representing a language with * the given BCP 47 code. * @param string $bcp47code the BCP 47 code for the language */ public function __construct( string $bcp47code ) { $this->code = $bcp47code; } /** @inheritDoc */ public function toBcp47Code(): string { return $this->code; } /** @inheritDoc */ public function isSameCodeAs( Bcp47Code $other ): bool { return ( $this === $other ) || self::isSameCode( $this, $other ); } public function __toString() { return $this->toBcp47Code(); } /** * Simple helper to coerce any Bcp47Code into a Bcp47CodeValue. * @param Bcp47Code $language an object representing a language * @return Bcp47CodeValue a simple value object representing a language. */ public static function fromBcp47Code( Bcp47Code $language ): Bcp47CodeValue { if ( $language instanceof Bcp47CodeValue ) { return $language; } return new Bcp47CodeValue( $language->toBcp47Code() ); } /** * Simple helper to compare Bcp47Code in the proper case-insensitive * manner. * @param Bcp47Code $a * @param Bcp47Code $b * @return bool True if the bcp-47 codes should be considered equal */ public static function isSameCode( Bcp47Code $a, Bcp47Code $b ) { return ( $a === $b ) || strcasecmp( $a->toBcp47Code(), $b->toBcp47Code() ) === 0; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка