whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
File
/
Upload File:
files >> /home/kckglobal/www/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'; }
Copyright ©2021 || Defacer Indonesia