Results of 1 - 10 of about 28 for addFromString (0.009 sec.)
- ファイルシステム上のファイルを tar/zip アーカイブに追加する 13158
- « PharData::addFile PharData::buildFromDirectory » PHP Manual PharData ファイルシステム上のファイ
...
ルを tar/zip アーカイブに追加する PharData::addFromString (PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 2.0.0) ...
PharData::addFromString — ファイルシステム上のファイルを tar/zip アーカイブ ...
に追加する 説明 public PharData::addFromString ( string $localName , string $contents ): void この ...
指定したものとなります。 このメソッドは ZipArchive::addFromString() と同じようなものです。 パラメータ localName ファ ...
-
https://man.plustar.jp/php/phardata.addfromstring.html
- [similar]
- 文字列から、ファイルを phar アーカイブに追加する 13076
- « Phar::addFile Phar::apiVersion » PHP Manual Phar 文字列から、ファイルを phar アーカイブに追加す
...
る Phar::addFromString (PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 2.0.0) ...
Phar::addFromString — 文字列から、ファイルを phar アーカイブに追加する ...
説明 public Phar::addFromString ( string $localName , string $contents ): void 注意 ...
指定したものとなります。 このメソッドは ZipArchive::addFromString() と同じようなものです。 パラメータ localName ファ ...
-
https://man.plustar.jp/php/phar.addfromstring.html
- [similar]
- 内容を指定して、ファイルを ZIP アーカイブに追加する 11126
- « ZipArchive::addFile ZipArchive::addGlob » PHP Manual ZipArchive 内容を指定して、ファイルを ZIP
...
アーカイブに追加する ZipArchive::addFromString (PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.1.0) ...
ZipArchive::addFromString — 内容を指定して、ファイルを ZIP アーカイブに追加す ...
る 説明 public ZipArchive::addFromString ( string $name , string $content , int $flags = Zi ...
rchive :: CREATE ); if ( $res === TRUE ) { $zip -> addFromString ( 'test.txt' , 'ここにファイルの内容を書きます' ); ...
-
https://man.plustar.jp/php/ziparchive.addfromstring.html
- [similar]
- ファイルシステム上のファイルを tar/zip アーカイブに追加する 9323
- « PharData::addEmptyDir PharData::addFromString » PHP Manual PharData ファイルシステム上のファイ
...
す } ?> 注意 注意 : PharData::addFile() , PharData::addFromString() , PharData::offsetSet() は、呼び出されるたびに新 ...
ム上のファイルを phar アーカイブに追加する PharData::addFromString() - ファイルシステム上のファイルを tar/zip アーカイ ...
イブ , PharData , 追加 , tar , addFile , ファイル , addFromString , phar , localName , パラメータ ...
-
https://man.plustar.jp/php/phardata.addfile.html
- [similar]
- ファイルシステム上のファイルを phar アーカイブに追加する 9241
- « Phar::addEmptyDir Phar::addFromString » PHP Manual Phar ファイルシステム上のファイルを phar ア
...
理をします } ?> 注意 注意 : Phar::addFile() , Phar::addFromString() , Phar::offsetSet() は、呼び出されるたびに新しい ...
ム上のファイルを tar/zip アーカイブに追加する Phar::addFromString() - 文字列から、ファイルを phar アーカイブに追加す ...
, 追加 , addFile , ファイル , localName , スロー , addFromString , 注意 ...
-
https://man.plustar.jp/php/phar.addfile.html
- [similar]
- アーカイブ内のエントリのインデックスを返す 8996
- « ZipArchive::isEncryptionMethodSupported ZipArchive::open » PHP Manual ZipArchive アーカイブ内の
...
:: CREATE ) !== TRUE ) { exit( '失敗' ); } $zip -> addFromString ( 'entry1.txt' , 'entry #1' ); $zip -> addFromStri ...
ng ( 'entry2.txt' , 'entry #2' ); $zip -> addFromString ( 'dir/entry2d.txt' , 'entry #2' ); if ( $zip -> s ...
-
https://man.plustar.jp/php/ziparchive.locatename.html
- [similar]
- インデックスで定義されたエントリの圧縮方法を設定する 8504
- « ZipArchive::setCommentName ZipArchive::setCompressionName » PHP Manual ZipArchive インデックス
...
rchive :: CREATE ); if ( $res === TRUE ) { $zip -> addFromString ( 'foo' , 'Some text' ); $zip -> addFromString ( ' ...
-
https://man.plustar.jp/php/ziparchive.setcompressionindex.html
- [similar]
- 名前で定義されたエントリの圧縮メソッドを設定する 8340
- « ZipArchive::setCompressionIndex ZipArchive::setEncryptionIndex » PHP Manual ZipArchive 名前で定
...
rchive :: CREATE ); if ( $res === TRUE ) { $zip -> addFromString ( 'foo' , 'Some text' ); $zip -> addFromString ( ' ...
-
https://man.plustar.jp/php/ziparchive.setcompressionname.html
- [similar]
- 例 7931
- « 定義済み定数 ZipArchive » PHP Manual Zip 例 例 例1 Zip アーカイブの作成 <?php $zip = new ZipAr
...
{ exit( "cannot open < $filename >\n" ); } $zip -> addFromString ( "testfilephp.txt" . time (), "#1 This is a test ...
string added as testfilephp.txt.\n" ); $zip -> addFromString ( "testfilephp2.txt" . time (), "#2 This is a test ...
-
https://man.plustar.jp/php/zip.examples.html
- [similar]
- ZIP アーカイブのコメントを設定する 7685
- « ZipArchive::replaceFile ZipArchive::setCommentIndex » PHP Manual ZipArchive ZIP アーカイブのコ
...
rchive :: CREATE ); if ( $res === TRUE ) { $zip -> addFromString ( 'test.txt' , 'ここにファイルの内容を書きます' ); ...
-
https://man.plustar.jp/php/ziparchive.setarchivecomment.html
- [similar]