Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/File/WriteMode.php
Назад
<?php declare(strict_types=1); namespace Psl\File; enum WriteMode: string { /** * Open the file for writing only; place the file pointer at the beginning of * the file. * * If the file exits, it is not truncated (as with `TRUNCATE`), and the call * succeeds (unlike `MUST_CREATE`). */ case OPEN_OR_CREATE = 'cb'; /** * Open for writing only; place the file pointer at the beginning of the * file and truncate the file to zero length. If the file does not exist, * attempt to create it. */ case TRUNCATE = 'wb'; /** * Open for writing only; place the file pointer at the end of the file. If * the file does not exist, attempt to create it. In this mode, seeking has * no effect, writes are always appended. */ case APPEND = 'ab'; /** * Create and open for writing only; place the file pointer at the beginning * of the file. If the file already exists, the filesystem call will throw an * exception. If the file does not exist, attempt to create it. */ case MUST_CREATE = 'xb'; }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка