[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
jurnal-kesmas
/
lib
/
pkp
/
lib
/
vendor
/
gettext
/
translator
/
src
/
[
Home
]
File: Formatter.php
<?php declare(strict_types = 1); namespace Gettext; class Formatter implements FormatterInterface { public function format(string $text, array $args): string { if (empty($args)) { return $text; } return is_array($args[0]) ? strtr($text, $args[0]) : vsprintf($text, $args); } }