控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Your Name cfaaa533bb dsdfd il y a 11 mois
..
Catalogue dsdfd il y a 11 mois
Command dsdfd il y a 11 mois
DataCollector dsdfd il y a 11 mois
DependencyInjection dsdfd il y a 11 mois
Dumper dsdfd il y a 11 mois
Exception dsdfd il y a 11 mois
Extractor dsdfd il y a 11 mois
Formatter dsdfd il y a 11 mois
Loader dsdfd il y a 11 mois
Provider dsdfd il y a 11 mois
Reader dsdfd il y a 11 mois
Resources dsdfd il y a 11 mois
Test dsdfd il y a 11 mois
Util dsdfd il y a 11 mois
Writer dsdfd il y a 11 mois
CHANGELOG.md dsdfd il y a 11 mois
DataCollectorTranslator.php dsdfd il y a 11 mois
IdentityTranslator.php dsdfd il y a 11 mois
LICENSE dsdfd il y a 11 mois
LoggingTranslator.php dsdfd il y a 11 mois
MessageCatalogue.php dsdfd il y a 11 mois
MessageCatalogueInterface.php dsdfd il y a 11 mois
MetadataAwareInterface.php dsdfd il y a 11 mois
PseudoLocalizationTranslator.php dsdfd il y a 11 mois
README.md dsdfd il y a 11 mois
TranslatableMessage.php dsdfd il y a 11 mois
Translator.php dsdfd il y a 11 mois
TranslatorBag.php dsdfd il y a 11 mois
TranslatorBagInterface.php dsdfd il y a 11 mois
composer.json dsdfd il y a 11 mois

README.md

Translation Component

The Translation component provides tools to internationalize your application.

Getting Started

$ composer require symfony/translation
use Symfony\Component\Translation\Translator;
use Symfony\Component\Translation\Loader\ArrayLoader;

$translator = new Translator('fr_FR');
$translator->addLoader('array', new ArrayLoader());
$translator->addResource('array', [
    'Hello World!' => 'Bonjour !',
], 'fr_FR');

echo $translator->trans('Hello World!'); // outputs « Bonjour ! »

Sponsor

The Translation component for Symfony 5.4/6.0 is backed by:

  • Crowdin, a cloud-based localization management software helping teams to go global and stay agile.
  • Lokalise, a continuous localization and translation management platform that integrates into your development workflow so you can ship localized products, faster.

Help Symfony by sponsoring its development!

Resources