Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/IO/write_error_line.php
Назад
<?php declare(strict_types=1); namespace Psl\IO; use Psl\Str; /** * Write all of the requested data to the error output handle, followed by a new line. * * The $message will be formatted using the given arguments ( ...$args ). * * If the error output handle is not available, this function will return immediately. * * @param int|float|string ...$args * * @throws Exception\AlreadyClosedException If the output handle has been already closed. * @throws Exception\RuntimeException If an error occurred during the operation. * * @codeCoverageIgnore */ function write_error_line(string $message, ...$args): void { /** * @psalm-suppress MissingThrowsDocblock - we won't encounter timeout, or already closed exception. */ error_handle()?->writeAll(Str\format($message, ...$args) . "\n"); }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка