検索

phrase: max: clip:
target: order:
Results of 321 - 330 of about 418 for Foo (0.200 sec.)
保存した数値を増やす 3582
« apcu_fetch apcu_key_info » PHP Manual APCu 関数 保存した数値を増やす apcu_inc (PECL apcu >= 4. ... l" , PHP_EOL , PHP_EOL ; apcu_store ( 'astring' , 'foo' ); $ret = apcu_inc ( 'astring' , 1 , $fail ); var ...
https://man.plustar.jp/php/function.apcu-inc.html - [similar]
指定された配列がリストかどうかをチェックする 3582
« array_intersect array_key_exists » PHP Manual 配列 関数 指定された配列がリストかどうかをチェッ ... ーが数値でない場合 array_is_list ([ 0 => 'apple' , 'foo' => 'bar' ]); // false // 数値のキーが連続していな ...
https://man.plustar.jp/php/function.array-is-list.html - [similar]
バイナリ対応の bzip2 ファイルへの書き込み 3582
« bzread LZF » PHP Manual Bzip2 関数 バイナリ対応の bzip2 ファイルへの書き込み bzwrite (PHP 4 >= ... $str = "uncompressed data" ; $bz = bzopen ( "/tmp/foo.bz2" , "w" ); bzwrite ( $bz , $str , strlen ( $str ...
https://man.plustar.jp/php/function.bzwrite.html - [similar]
Return the value of a specific field in a specific row 3582
« cubrid_real_escape_string cubrid_unbuffered_query » PHP Manual CUBRID MySQL 互換関数 Return th ... ame). If the column name has been aliased ('select foo as bar from...'), use the alias instead of the col ...
https://man.plustar.jp/php/function.cubrid-result.html - [similar]
出力をファイルにフラッシュする 3582
« feof fgetc » PHP Manual ファイルシステム 関数 出力をファイルにフラッシュする fflush (PHP 4 >= ... name , 'r+' ); rewind ( $file ); fwrite ( $file , 'Foo' ); fflush ( $file ); ftruncate ( $file , ftell ( ...
https://man.plustar.jp/php/function.fflush.html - [similar]
FTP 接続にログインする 3582
« ftp_get ftp_mdtm » PHP Manual FTP 関数 FTP 接続にログインする ftp_login (PHP 4, PHP 5, PHP 7, ... php $ftp_server = "ftp.example.com" ; $ftp_user = "foo" ; $ftp_pass = "bar" ; // 接続を確立する。接続に失 ...
https://man.plustar.jp/php/function.ftp-login.html - [similar]
リソース型を返す 3582
« get_resource_id gettype » PHP Manual 変数操作 関数 リソース型を返す get_resource_type (PHP 4 > ... 例1 get_resource_type() の例 <?php $fp = fopen ( "foo" , "w" ); echo get_resource_type ( $fp ) . "\n" ; ...
https://man.plustar.jp/php/function.get-resource-type.html - [similar]
引数が、数えられる値かどうかを調べる 3582
« is_callable is_double » PHP Manual 変数操作 関数 引数が、数えられる値かどうかを調べる is_count ... ue) var_dump ( is_countable (new ArrayIterator ([ 'foo' , 'bar' , 'baz' ]))); // bool(true) var_dump ( is ...
https://man.plustar.jp/php/function.is-countable.html - [similar]
正規表現によるマッチングを行う 3582
« preg_match_all preg_quote » PHP Manual PCRE 関数 正規表現によるマッチングを行う preg_match (PH ... へのオフセットからなります。 <?php preg_match ( '/(foo)(bar)(baz)/' , 'foobarbaz' , $matches , PREG_OFFSE ... 出力は以下となります。 Array ( [0] => Array ( [0] => foobarbaz [1] => 0 ) [1] => Array ( [0] => foo [1] => ... net 例4 名前つきサブパターンの使用法 <?php $str = 'foobar: 2008' ; preg_match ( '/(?P<name>\w+): (?P<digi ... ; ?> 上の例の出力は以下となります。 Array ( [0] => foobar: 2008 [name] => foobar [1] => foobar [digit] => ...
https://man.plustar.jp/php/function.preg-match.html - [similar]
正規表現検索および置換を行う 3582
« preg_replace_callback preg_split » PHP Manual PCRE 関数 正規表現検索および置換を行う preg_repl ... 、文字列から余分な空白を取り除きます。 <?php $str = 'foo o' ; $str = preg_replace ( '/\s\s+/' , ' ' , $str ... ); // This will be 'foo o' now echo $str ; ?> 例5 count 引数の使用 <?php $ ...
https://man.plustar.jp/php/function.preg-replace.html - [similar]