検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 54 for old (0.007 sec.)
3 つのファイルをひとつに統合する 12089
« xdiff_file_diff xdiff_file_patch_binary » PHP Manual xdiff 関数 3 つのファイルをひとつに統合す ... をひとつに統合する 説明 xdiff_file_merge3 ( string $old_file , string $new_file1 , string $new_file2 , str ... をひとつに統合し、結果をファイル dest に保存します。 old_file が元のバージョンで、 new_file1 と new_file2 が ... 修正したバージョンとなります。 パラメータ old_file 最初のファイルへのパス。"旧" ファイルです。 n ... ew_file1 2 番目のファイルへのパス。 old_file の修正版です。 new_file2 3 番目のファイルへの ...
https://man.plustar.jp/php/function.xdiff-file-merge3.html - [similar]
Architecture Overview 11332
« Driver Architecture and Internals Connections » PHP Manual Driver Architecture and Internals A ... ies on top. This new architecture has replaced the old mongo extension. We refer to the new one as the mo ... similar to what users have come to expect from the old mongo driver (e.g. CRUD methods, database and coll ... ction. Although we implemented GridFS in C for our old mongo driver, it is actually quite a high-level sp ... Likewise, all of the syntactic sugar found in the old mongo driver, such as processing uploaded files or ...
https://man.plustar.jp/php/mongodb.overview.html - [similar]
3 つの文字列をひとつに統合する 10902
« xdiff_string_diff xdiff_string_patch_binary » PHP Manual xdiff 関数 3 つの文字列をひとつに統合 ... ひとつに統合する 説明 xdiff_string_merge3 ( string $old_data , string $new_data1 , string $new_data2 , str ... 3 つの文字列をひとつに結合し、その結果を返します。 old_data が元のバージョンで、 new_data1 と new_data2 が ... 合時に拒否された部分がそこに渡されます。 パラメータ old_data 最初のデータ文字列。"旧" データです。 new_dat ... a1 2 番目のデータ文字列。 old_data の修正版です。 new_data2 3 番目のデータ文字列 ...
https://man.plustar.jp/php/function.xdiff-string-merge3.html - [similar]
2 つの文字列の unified diff を作成する 10739
« xdiff_string_diff_binary xdiff_string_merge3 » PHP Manual xdiff 関数 2 つの文字列の unified di ... d diff を作成する 説明 xdiff_string_diff ( string $old_data , string $new_data , int $context = 3 , bool ... $minimal = false ): string old_data 文字列と new_data 文字列の差分を含む unified ... イルを出力します (長い時間がかかります)。 パラメータ old_data データを含む最初の文字列。"旧" データです。 n ... ドは 2 つの記事の unified diff を作成します。 <?php $old_article = file_get_contents ( './old_article.txt' ...
https://man.plustar.jp/php/function.xdiff-string-diff.html - [similar]
2 つのファイルの unified diff を作成する 10057
« xdiff_file_diff_binary xdiff_file_merge3 » PHP Manual xdiff 関数 2 つのファイルの unified diff ... ied diff を作成する 説明 xdiff_file_diff ( string $old_file , string $new_file , string $dest , int $cont ... ext = 3 , bool $minimal = false ): bool old_file と new_file の差分を含む unified diff を作成し ... イルを出力します (長い時間がかかります)。 パラメータ old_file 最初のファイルへのパス。"旧" ファイルです。 n ... ied diff を context length 2 で作成します。 <?php $old_version = 'my_script.php' ; $new_version = 'my_new ...
https://man.plustar.jp/php/function.xdiff-file-diff.html - [similar]
FTP サーバー上のファイルまたはディレクトリの名前を変更する 9478
« ftp_rawlist ftp_rmdir » PHP Manual FTP 関数 FTP サーバー上のファイルまたはディレクトリの名前を ... を期待していました。 例 例1 ftp_rename() の例 <?php $old_file = 'somefile.txt.bak' ; $new_file = 'somefile. ... in ( $ftp , $ftp_user_name , $ftp_user_pass ); // $old_file を $new_file に変更することを試みる if ( ftp_ ... rename ( $ftp , $old_file , $new_file )) { echo "successfully renamed $ ... } else { echo "There was a problem while renaming $old_file to $new_file \n" ; } // 接続を閉じる ftp_clos ...
https://man.plustar.jp/php/function.ftp-rename.html - [similar]
ブロックされたシグナルを設定あるいは取得する 8959
« pcntl_signal pcntl_sigtimedwait » PHP Manual PCNTL 関数 ブロックされたシグナルを設定あるいは取 ... sigprocmask ( int $mode , array $signals , array &$old_signals = null ): bool pcntl_sigprocmask() 関数は、 ... 指定したもので置き換える signals シグナルのリスト。 old_signals old_signals パラメータには、 それまでにブロ ... pcntl_sigprocmask ( SIG_BLOCK , array( SIGHUP )); $oldset = array(); pcntl_sigprocmask ( SIG_UNBLOCK , ar ... ray( SIGHUP ), $oldset ); ?> 参考 pcntl_sigwaitinfo() - シグナルを待つ ...
https://man.plustar.jp/php/function.pcntl-sigprocmask.html - [similar]
変数を古い値と比較して新しい値を代入する 8885
« wincache_ucache_add wincache_ucache_clear » PHP Manual WinCache 関数 変数を古い値と比較して新し ... 入する 説明 wincache_ucache_cas ( string $key , int $old_value , int $new_value ): bool 指定したキーの変数を ... old_value と比較し、 マッチした場合はそこに new_value ... 使ったキーの名前。 key は大文字小文字を区別します。 old_value ユーザーキャッシュ内の key が指す変数の古い値 ... wincache , 比較 , ucache , 値 , key , キー , cas , old ...
https://man.plustar.jp/php/function.wincache-ucache-cas.html - [similar]
古い値を新しい値に更新する 8633
« apcu_cache_info apcu_clear_cache » PHP Manual APCu 関数 古い値を新しい値に更新する apcu_cas (P ... しい値に更新する 説明 apcu_cas ( string $key , int $old , int $new ): bool apcu_cas() は、既に保存されてい ... る整数値が old パラメータにマッチする値のときに、それを new パラメ ... の値に更新します。 パラメータ key 更新する値のキー。 old 古い値 (現在保存されている値)。 new 新しく更新した ... , cas , foobar , new , fail , 保存 , パラメータ , old ...
https://man.plustar.jp/php/function.apcu-cas.html - [similar]
2 つのファイルのバイナリ diff を作成する 8633
« xdiff_file_bdiff_size xdiff_file_bpatch » PHP Manual xdiff 関数 2 つのファイルのバイナリ diff ... ナリ diff を作成する 説明 xdiff_file_bdiff ( string $old_file , string $new_file , string $dest ): bool ふた ... / xdiff_string_bpatch() を使用します。 パラメータ old_file 最初のファイルへのパス。"旧" ファイルです。 n ... つのアーカイブのバイナリ diff を作成します。 <?php $old_version = 'my_script_1.0.tgz' ; $new_version = 'my ... _script_1.1.tgz' ; xdiff_file_bdiff ( $old_version , $new_version , 'my_script.bdiff' ); ?> 注 ...
https://man.plustar.jp/php/function.xdiff-file-bdiff.html - [similar]
PREV 1 2 3 4 5 6 NEXT