検索

phrase: max: clip:
target: order:
Results of 191 - 200 of about 1068 for file (0.016 sec.)
ファイルが実行可能かどうかを調べる 3458
« is_dir is_file » PHP Manual ファイルシステム 関数 ファイルが実行可能かどうかを調べる is_execut ... 行可能かどうかを調べる 説明 is_executable ( string $filename ): bool ファイルが実行可能かどうかを調べます。 ... パラメータ filename ファイルへのパス。 戻り値 ファイルが存在し、か ... が発生します。 例 例1 is_executable() の例 <?php $file = '/home/vincent/somefile.sh' ; if ( is_executable ... ( $file )) { echo $file . ' は実行可能です' ; } else { ech ...
https://man.plustar.jp/php/function.is-executable.html - [similar]
追加の ini ディレクトリにある .ini ファイルのリストを取得する 3458
« php_ini_loaded_file php_sapi_name » PHP Manual PHP オプション/情報 関数 追加の ini ディレクトリ ... ある .ini ファイルのリストを取得する php_ini_scanned_files (PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8) php_ini_sca ... nned_files — 追加の ini ディレクトリにある .ini ファイルのリ ... ストを取得する 説明 php_ini_scanned_files (): string | false php_ini_scanned_files() は、 p ... カンマ区切りにした文字列が返されます。 --with-config-file-scan-dir がセットされておらず、かつ環境変数 PHP_IN ...
https://man.plustar.jp/php/function.php-ini-scanned-files.html - [similar]
Vtiful\Kernel\Excel addSheet 3458
« Vtiful\Kernel\Excel Vtiful\Kernel\Excel::autoFilter » PHP Manual Vtiful\Kernel\Excel Vtiful\Ke ... ng $sheetName ) Create a new worksheet in the xlsx file. パラメータ sheetName Worksheet name 戻り値 Vtiful ... example <?php $config = [ 'path' => './tests' ]; $fileObject = new \ Vtiful \ Kernel \ Excel ( $config ); ... $file = $fileObject -> fileName ( 'tutorial.xlsx' , 'she ... ) -> data ([ [ 'viest' , 23 ], [ 'wjx' , 23 ] ]); $file -> addSheet ( 'sheet_two' ) -> header ([ 'name' , ...
https://man.plustar.jp/php/vtiful-kernel-excel.addSheet.html - [similar]
finfo クラス 3440
« mime_content_type finfo::buffer » PHP Manual Fileinfo finfo クラス finfo クラス (PHP 5 >= 5.3. ... 0, PHP 7, PHP 8, PECL fileinfo >= 0.1.0) はじめに このクラスは、fileinfo 関数 ... { /* メソッド */ public __construct ( int $flags = FILEINFO_NONE , ? string $magic_database = null ) publi ... c buffer ( string $string , int $flags = FILEINFO_NONE , ? resource $context = null ): string | ... false public file ( string $filename , int $flags = FILEINFO_NONE , ...
https://man.plustar.jp/php/class.finfo.html - [similar]
The Swoole\Async class 3440
« swoole_version Swoole\Async::dnsLookup » PHP Manual Swoole The Swoole\Async class The Swoole\A ... ble $callback ): void public static read ( string $filename , callable $callback , int $chunk_size = ? , i ... nt $offset = ? ): bool public static readFile ( string $filename , callable $callback ): void pu ... ay $settings ): void public static write ( string $filename , string $content , int $offset = ? , callable ... $callback = ? ): void public static writeFile ( string $filename , string $content , callable $c ...
https://man.plustar.jp/php/class.swoole-async.html - [similar]
FTP サーバーにファイルをアップロードする 3440
« ftp_pasv ftp_pwd » PHP Manual FTP 関数 FTP サーバーにファイルをアップロードする ftp_put (PHP 4 ... 説明 ftp_put ( FTP\Connection $ftp , string $remote_filename , string $local_filename , int $mode = FTP_BIN ... ータ ftp FTP\Connection クラスのインスタンス remote_filename リモートファイルのパス。 local_filename ローカ ... ラメータは必須でした。 例 例1 ftp_put() の例 <?php $file = 'somefile.txt' ; $remote_file = 'readme.txt' ; / ... イルをアップロードする if ( ftp_put ( $ftp , $remote_file , $file , FTP_ASCII )) { echo "successfully upload ...
https://man.plustar.jp/php/function.ftp-put.html - [similar]
PKCS7 ファイルを PEM証明書 の配列にエクスポートする 3440
« openssl_pkcs7_encrypt openssl_pkcs7_sign » PHP Manual OpenSSL 関数 PKCS7 ファイルを PEM証明書 ... P7B ファイルから、PEM証明書の配列を取得する <?php $file = 'certs.p7b' ; $f = file_get_contents ( $file ); ... false ) { printf ( "ERROR: %s is not a proper p7b file" . PHP_EOL , $file ); for( $e = openssl_error_stri ...
https://man.plustar.jp/php/function.openssl-pkcs7-read.html - [similar]
キー/証明書パラメータ 3440
« その他の定数 証明書の認証 » PHP Manual OpenSSL キー/証明書パラメータ キー/証明書パラメータ Ope ... より前のバージョンでは、 OpenSSL X.509 型のリソース) file://path/to/cert.pem 形式の文字列。 このファイルは、 ... 前のバージョンでは、 OpenSSL X.509 CSR 型のリソース) file://path/to/csr.pem 形式の文字列。 このファイルは、P ... より前のバージョンでは、 OpenSSL X.509 型のリソース) file://path/to/file.pem 形式の文字列。- このファイルは、 ... という構文を使用することも可能です。 ただし、$key は file:// または上記のテキスト表現形式を使用して指定したキ ...
https://man.plustar.jp/php/openssl.certparams.html - [similar]
簡易なファイルロックを行う 3440
« SplFileObject::fgetss SplFileObject::fpassthru » PHP Manual SplFileObject 簡易なファイルロック ... を行う SplFileObject::flock (PHP 5 >= 5.1.0, PHP 7, PHP 8) SplFil ... :flock — 簡易なファイルロックを行う 説明 public SplFileObject::flock ( int $operation , int &$wouldBlock = ... ue を、失敗した場合に false を返します。 例 例1 SplFileObject::flock() の例 <?php $file = new SplFileObjec ... t ( "/tmp/lock.txt" , "w" ); if ( $file -> flock ( LOCK_EX )) { // 排他ロックを行う $file ...
https://man.plustar.jp/php/splfileobject.flock.html - [similar]
ファイル情報 3416
« scandir はじめに » PHP Manual ファイルシステム ファイル情報 ファイル情報 はじめに インストール ... インストール手順 実行時設定 リソース型 定義済み定数 Fileinfo 関数 finfo_buffer — 文字列バッファの情報を返す ... finfo_close — fileinfo インスタンスを閉じる finfo_file — ファイルにつ ... いての情報を返す finfo_open — 新しい fileinfo インスタンスを作成する finfo_set_flags — libma ... info::__construct — finfo_open のエイリアス finfo::file — finfo_file() のエイリアス finfo::set_flags — fin ...
https://man.plustar.jp/php/book.fileinfo.html - [similar]