Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
local
/
wp
/
vendor
/
gettext
/
gettext
/
src
/
Extractors
📤 Upload
📝 New File
📁 New Folder
Close
Editing: ExtractorMultiInterface.php
<?php namespace Gettext\Extractors; use Gettext\Translations; interface ExtractorMultiInterface { /** * Parses a string and append the translations found in the Translations instance. * Allows scanning for multiple domains at a time (each Translation has to have a different domain) * * @param string $string * @param Translations[] $translations * @param array $options */ public static function fromStringMultiple($string, array $translations, array $options = []); /** * Parses a string and append the translations found in the Translations instance. * Allows scanning for multiple domains at a time (each Translation has to have a different domain) * * @param $file * @param Translations[] $translations * @param array $options */ public static function fromFileMultiple($file, array $translations, array $options = []); }
Save
Cancel