検索

phrase: max: clip:
target: order:
Results of 391 - 400 of about 1938 for IF (0.050 sec.)
About event persistence 2585
« Event flags Event callbacks » PHP Manual Event About event persistence About event persistence ... d() on it again from inside the callback function. If the Event::PERSIST flag is set on an event, howeve ... t resets whenever the event's callback runs. Thus, if one has an event with flags Event::READ | Event::P ...
https://man.plustar.jp/php/event.persistence.html - [similar]
Makes an HTTP server accept connections on the specified socket stream or resour... 2585
« EventHttp EventHttp::addServerAlias » PHP Manual EventHttp Makes an HTTP server accept connect ... ions on the specified socket stream or resource EventHttp::accept (PE ... Makes an HTTP server accept connections on the specified socket stream or resource 説明 public EventHttp ... Makes an HTTP server accept connections on the specified socket stream or resource. The socket should be ... be called multiple times to accept connections on different sockets. 注意 : To bind a socket, listen , a ...
https://man.plustar.jp/php/eventhttp.accept.html - [similar]
暗号化フィルタ 2585
« 圧縮フィルタ サポートされるソケットトランスポートのリスト » PHP Manual 利用できるフィルタのリス ... m , "rb" ); $fc = fopen ( $aes_filename , "wb+" ); if (!empty( $fin ) && !empty( $fc )) { fwrite ( $fc , ... me , "rb" ); $fout = fopen ( $out_stream , 'wb' ); if (!empty( $fout ) && !empty( $fc ) && self :: hash_ ... (! feof ( $fc )) { $block = fread ( $fc , 8192 ); if ( feof ( $fc )) { $padding = ord ( $block [ strlen ... te static function hash_equals ( $str1 , $str2 ) { if( strlen ( $str1 ) == strlen ( $str2 )) { $res = $s ...
https://man.plustar.jp/php/filters.encryption.html - [similar]
Move the cursor of a lob object 2585
« cubrid_lob2_seek64 cubrid_lob2_size64 » PHP Manual CUBRID 関数 Move the cursor of a lob object ... object 説明 cubrid_lob2_seek ( resource $lob_identifier , int $offset , int $origin = CUBRID_CURSOR_CUR ... ng. In this case, offset must be a positive value. If you use CUBRID_CURSOR_CURRENT for origin , you can ... backward. and offset can be positive or negative. If you use CUBRID_CURSOR_LAST for origin , you can mo ... d offset only can be positive. パラメータ lob_identifier Lob identifier as a result of cubrid_lob2_new() ...
https://man.plustar.jp/php/function.cubrid-lob2-seek.html - [similar]
フィールドが SQL の NULL かどうか調べる 2585
« pg_fetch_row pg_field_name » PHP Manual PostgreSQL 関数 フィールドが SQL の NULL かどうか調べる ... "select * from authors where author = 'Orwell'" ); if ( $res ) { if ( pg_field_is_null ( $res , 0 , "yea ... echo "The value of the field year is null.\n" ; } if ( pg_field_is_null ( $res , 0 , "year" ) == 0 ) { ...
https://man.plustar.jp/php/function.pg-field-is-null.html - [similar]
Returns a string description of the last connect error 2585
« Stomp 関数 stomp_version » PHP Manual Stomp 関数 Returns a string description of the last conn ... 戻り値 A string that describes the error, or null if no error occurred. 例 例1 stomp_connect_error() ex ... link = stomp_connect ( 'http://localhost:61613' ); if(! $link ) { die( 'Connection failed: ' . stomp_con ...
https://man.plustar.jp/php/function.stomp-connect-error.html - [similar]
指定された部分文字列が、文字列に含まれるかを調べる 2585
« sscanf str_ends_with » PHP Manual String 関数 指定された部分文字列が、文字列に含まれるかを調べ ... を返します。 例 例1 空文字列 '' を使った場合 <?php if ( str_contains ( 'abc' , '' )) { echo "Checking th ... p $string = 'The lazy fox jumped over the fence' ; if ( str_contains ( $string , 'lazy' )) { echo "The s ... tring 'lazy' was found in the string\n" ; } if ( str_contains ( $string , 'Lazy' )) { echo 'The s ...
https://man.plustar.jp/php/function.str-contains.html - [similar]
文字列が、指定された文字列で終わるかを調べる。 2585
« str_contains str_getcsv » PHP Manual String 関数 文字列が、指定された文字列で終わるかを調べる。 ... e を返します。 例 例1 空文字列 '' を使う場合 <?php if ( str_ends_with ( 'abc' , '' )) { echo "All string ... p $string = 'The lazy fox jumped over the fence' ; if ( str_ends_with ( $string , 'fence' )) { echo "The ... string ends with 'fence'\n" ; } if ( str_ends_with ( $string , 'Fence' )) { echo 'The ...
https://man.plustar.jp/php/function.str-ends-with.html - [similar]
文字列が指定された部分文字列で始まるかを調べる 2585
« str_split str_word_count » PHP Manual String 関数 文字列が指定された部分文字列で始まるかを調べ ... e を返します。 例 例1 空文字列 '' を使う場合 <?php if ( str_starts_with ( 'abc' , '' )) { echo "All stri ... p $string = 'The lazy fox jumped over the fence' ; if ( str_starts_with ( $string , 'The' )) { echo "The ... string starts with 'The'\n" ; } if ( str_starts_with ( $string , 'the' )) { echo 'The ...
https://man.plustar.jp/php/function.str-starts-with.html - [similar]
秒およびナノ秒単位で実行を遅延する 2585
« sys_getloadavg time_sleep_until » PHP Manual その他の関数 秒およびナノ秒単位で実行を遅延する t ... ! もし配列が返された場合、これはうまく動作しません if ( time_nanosleep ( 0 , 500000000 )) { echo "0.5 秒 ... 遅延しました。\n" ; } // こちらのほうがよいでしょう if ( time_nanosleep ( 0 , 500000000 ) === true ) { ec ... 良の方法です $nano = time_nanosleep ( 2 , 100000 ); if ( $nano === true ) { echo "2 秒と 100 マイクロ秒だ ... け遅延しました。\n" ; } elseif ( $nano === false ) { echo "遅延に失敗しました。\n ...
https://man.plustar.jp/php/function.time-nanosleep.html - [similar]