Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/File/open_write_only.php
Назад
<?php declare(strict_types=1); namespace Psl\File; /** * Open a file handle for write only. * * @param non-empty-string $file * * @throws Exception\NotFileException If $file points to a non-file node on the filesystem. * @throws Exception\AlreadyCreatedException If $file is already created, and $write_mode is {@see WriteMode::MUST_CREATE}. * @throws Exception\NotFoundException If $file does not exist, and $write_mode is {@see WriteMode::TRUNCATE} or {@see WriteMode::APPEND}. * @throws Exception\NotWritableException If $file exists, and is non-writable. * @throws Exception\RuntimeException If unable to create the $file if it does not exist. */ function open_write_only(string $file, WriteMode $mode = WriteMode::OPEN_OR_CREATE): WriteHandleInterface { return new WriteHandle($file, $mode); }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка