検索

phrase: max: clip:
target: order:
Results of 311 - 320 of about 1068 for file (0.021 sec.)
ReflectionGenerator オブジェクトを構築する 3122
« ReflectionGenerator ReflectionGenerator::getExecutingFile » PHP Manual ReflectionGenerator Ref ... e } Line: { $reflectionGen -> getExecutingLine ()} File: { $reflectionGen -> getExecutingFile ()} output; ... 出力は、 たとえば以下のようになります。 gen Line: 5 File: /path/to/file/example.php 参考 ReflectionGenerato ... ータの行を取得する ReflectionGenerator::getExecutingFile() - 現在実行中のジェネレータのファイル名を取得する ... クト , 構築 , construct , 取得 , 実行 , getExecutingFile , Generator , パラメータ , 出力 ...
https://man.plustar.jp/php/reflectiongenerator.construct.html - [similar]
ファイルポインタの現在位置を返す 3122
« SplFileObject::fstat SplFileObject::ftruncate » PHP Manual SplFileObject ファイルポインタの現在 ... 位置を返す SplFileObject::ftell (PHP 5 >= 5.1.0, PHP 7, PHP 8) SplFil ... — ファイルポインタの現在位置を返す 説明 public SplFileObject::ftell (): int | false ファイルストリームにお ... もしくはエラーのときは false を返します。 例 例1 SplFileObject::ftell() の例 <?php $file = new SplFileObjec ... ( "/etc/passwd" ); // 最初の行を読み込む $data = $file -> fgets (); // どこにいるのか? echo $file -> ftel ...
https://man.plustar.jp/php/splfileobject.ftell.html - [similar]
Secure Shell 2 3122
« phar:// rar:// » PHP Manual サポートするプロトコル/ラッパー Secure Shell 2 ssh2:// ssh2:// — S ... .1:14 ssh2.sftp://user:pass@example.com:22/path/to/filename オプション ラッパーの概要 属性 ssh2.shell ssh2 ... password パスワード認証に使用するパスワード pubkey_file 認証に使用する公開鍵ファイル privkey_file 認証に使 ... 2_connect ( 'example.com' , 22 ); ssh2_auth_pubkey_file ( $session , 'username' , '/home/username/.ssh/id_ ... 2_connect ( 'example.com' , 22 ); ssh2_auth_pubkey_file ( $session , 'username' , '/home/username/.ssh/id_ ...
https://man.plustar.jp/php/wrappers.ssh2.html - [similar]
新しい空のディレクトリを作成する 3098
« svn_fs_is_file svn_fs_make_file » PHP Manual SVN 関数 新しい空のディレクトリを作成する svn_fs_ ... 関連キーワード: ディレクトリ , 作成 , 空 , 関数 , file , path , 警告 , 注意 , リリース , 予告 ...
https://man.plustar.jp/php/function.svn-fs-make-dir.html - [similar]
メソッドリクエスト用の XML を生成する 3098
« xmlrpc_decode xmlrpc_encode » PHP Manual XML-RPC 関数 メソッドリクエスト用の XML を生成する xm ... tent-Type: text/xml" , 'content' => $request ))); $file = file_get_contents ( "http://www.example.com/xmlr ... , false , $context ); $response = xmlrpc_decode ( $file ); if ( $response && xmlrpc_is_fault ( $response ) ... ontext_create() - ストリームコンテキストを作成する file_get_contents() - ファイルの内容を全て文字列に読み込 ...
https://man.plustar.jp/php/function.xmlrpc-encode-request.html - [similar]
インストール手順 3098
« 要件 実行時設定 » PHP Manual インストール/設定 インストール手順 インストール手順 OPcache は共有 ... .interned_strings_buffer=8 opcache.max_accelerated_files=4000 opcache.revalidate_freq=60 opcache.fast_shut ... opcache.save_comments を無効にし、 opcache.enable_file_override を有効にしたいと思うかもしれませんが、この ... 知の現象としてあるからです。 Windows では、 opcache.file_cache_fallback を有効にすべきです。 かつ、既に存在 ... し、書き込み可能なディレクトリを opcache.file_cache に設定すべきです。 OPcache がサポートしている ...
https://man.plustar.jp/php/opcache.installation.html - [similar]
phar アーカイブのメタデータを設定する 3098
« Phar::setDefaultStub Phar::setSignatureAlgorithm » PHP Manual Phar phar アーカイブのメタデータ ... 使用します。 ファイル固有のメタデータについては PharFileInfo::setMetadata() を使うようにしましょう。大きなメ ... newphar.phar' ); try { $p = new Phar ( dirname ( __FILE__ ) . '/brandnewphar.phar' , 0 , 'brandnewphar.pha ... r' ); $p [ 'file.php' ] = '<?php echo "hello"' ; $p -> setMetadata ... (array( 'bootstrap' => 'file.php' )); var_dump ( $p -> getMetadata ()); } catch ...
https://man.plustar.jp/php/phar.setmetadata.html - [similar]
phar アーカイブのメタデータを設定する 3098
« PharData::setDefaultStub PharData::setSignatureAlgorithm » PHP Manual PharData phar アーカイブ ... 使用します。 ファイル固有のメタデータについては PharFileInfo::setMetadata() を使うようにしましょう。大きなメ ... newphar.phar' ); try { $p = new Phar ( dirname ( __FILE__ ) . '/brandnewphar.phar' , 0 , 'brandnewphar.pha ... r' ); $p [ 'file.php' ] = '<?php echo "hello"' ; $p -> setMetadata ... (array( 'bootstrap' => 'file.php' )); var_dump ( $p -> getMetadata ()); } catch ...
https://man.plustar.jp/php/phardata.setmetadata.html - [similar]
ファイルの終端に到達しているか調べる 3098
« SplFileObject::current SplFileObject::fflush » PHP Manual SplFileObject ファイルの終端に到達し ... ているか調べる SplFileObject::eof (PHP 5 >= 5.1.0, PHP 7, PHP 8) SplFileO ... ファイルの終端に到達しているか調べる 説明 public SplFileObject::eof (): bool ファイルの終端に到達しているか ... true 、そうでなければ false を返します。 例 例1 SplFileObject::eof() の例 <?php $file = new SplFileObject ... ( "fruits.txt" ); while ( ! $file -> eof ()) { echo $file -> fgets (); } ?> 上の例の ...
https://man.plustar.jp/php/splfileobject.eof.html - [similar]
RAR 3098
« ssh2:// ogg:// » PHP Manual サポートするプロトコル/ラッパー RAR rar:// rar:// — RAR 説明 このラ ... 。 そのため、ヘッダが暗号化されているアーカイブでは file_password は無視されます。 file_password ファイルを ... ); } } $f = "rar://" . rawurlencode ( dirname ( __FILE__ )) . DIRECTORY_SEPARATOR . 'dirs_and_extra_heade ... ば以下のようになります。 |-allow_everyone_ni [DIR] |-file1.txt |-file2_אּ.txt |-with_streams.txt \-אּ [DIR] |- ... אּ\%2Fempty%2E [DIR] | \-אּ\%2Fempty%2E\file7.txt |-אּ\empty [DIR] |-אּ\file3.txt |-אּ\file4_אּ.txt ...
https://man.plustar.jp/php/wrappers.rar.html - [similar]