検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 103 for break (0.004 sec.)
Create a new SSL buffer event to send its data over another buffer event 6558
« EventBufferEvent::sslError EventBufferEvent::sslGetCipherInfo » PHP Manual EventBufferEvent Cr ... ); $this -> ev_write ( $id , "250 OK ehlo\r\n" ); break; case strncmp ( 'HELO ' , $line , 4 ): $this -> ev ... ); $this -> ev_write ( $id , "250 OK helo\r\n" ); break; case strncmp ( 'QUIT' , $line , 3 ): $this -> ev_ ... , "250 OK quit\r\n" ); $this -> ev_close ( $id ); break; case strncmp ( 'STARTTLS' , $line , 3 ): $this -> ... nx' ]-> enable ( Event :: READ | Event :: WRITE ); break; default: echo 'unknown command: ' . $line . "\n" ...
https://man.plustar.jp/php/eventbufferevent.sslfilter.html - [similar]
Get the status for the running task 6506
« GearmanClient::doNormal GearmanClient::echo » PHP Manual GearmanClient Get the status for the ... lient -> returnCode ()) { case GEARMAN_WORK_DATA : break; case GEARMAN_WORK_STATUS : # get the current job ... o "Status: $numerator / $denominator complete\n" ; break; case GEARMAN_WORK_FAIL : echo "Failed\n" ; exit; ... case GEARMAN_SUCCESS : break; default: echo "RET: " . $gmclient -> returnCode ( ...
https://man.plustar.jp/php/gearmanclient.dostatus.html - [similar]
do-while 6428
« while for » PHP Manual 制御構造 do-while do-while (PHP 4, PHP 5, PHP 7, PHP 8) do-while ループ ... もしれません。 これは、 do-while (0)でコードを括り、 break 文を使用する方法です。次のコードは、この方法の例を ... ( $i < 5 ) { echo "i は十分大きくはありません。" ; break; } $i *= $factor ; if ( $i < $minimum_limit ) { br ...
https://man.plustar.jp/php/control-structures.do.while.html - [similar]
変換フィルタ 6377
« 文字列フィルタ 圧縮フィルタ » PHP Manual 利用できるフィルタのリスト 変換フィルタ 変換フィルタ ... 出力は line-length 文字単位に 分割されます。 line-break-chars が与えられた場合、 分割されたデータは、 line ... -break-chars で指定された文字列で区切って出力されます。 こ ... Cg== */ $param = array( 'line-length' => 8 , 'line-break-chars' => "\r\n" ); $fp = fopen ( 'php://output' , ... をサポートしています。 convert.base64-decode は line-break-chars パラメータのみをサポートしており、 これは符号 ...
https://man.plustar.jp/php/filters.convert.html - [similar]
エラー配列を取得する 6377
« libxml_disable_entity_loader libxml_get_last_error » PHP Manual libxml 関数 エラー配列を取得す ... WARNING : $return .= "Warning $error -> code : " ; break; case LIBXML_ERR_ERROR : $return .= "Error $error ... -> code : " ; break; case LIBXML_ERR_FATAL : $return .= "Fatal Error $ ... error -> code : " ; break; } $return .= trim ( $error -> message ) . "\n Lin ...
https://man.plustar.jp/php/function.libxml-get-errors.html - [similar]
指定した文字数で文字列を分割する 6377
« vsprintf 変更履歴 » PHP Manual String 関数 指定した文字数で文字列を分割する wordwrap (PHP 4 >= ... dwrap ( string $string , int $width = 75 , string $break = "\n" , bool $cut_long_words = false ): string 指 ... 入力文字列。 width 文字列を分割するときの文字数。 break オプションのパラメータ break を用いて行を分割します ...
https://man.plustar.jp/php/function.wordwrap.html - [similar]
6377
« 定義済み定数 ソケットのエラー » PHP Manual ソケット 例 例 例1 ソケットの例: 簡易 TCP/IP サーバ ... t_strerror ( socket_last_error ( $sock )) . "\n" ; break; } /* Send instructions. */ $msg = "\nWelcome to t ... trerror ( socket_last_error ( $msgsock )) . "\n" ; break 2 ; } if (! $buf = trim ( $buf )) { continue; } if ... ( $buf == 'quit' ) { break; } if ( $buf == 'shutdown' ) { socket_close ( $msg ... sock ); break 2 ; } $talkback = "PHP: You said ' $buf '.\n" ; so ...
https://man.plustar.jp/php/sockets.examples.html - [similar]
6286
« 定義済み定数 PhpToken » PHP Manual Tokenizer 例 例 以下に tokenizer を用いた簡単な PHP スクリプ ... case T_DOC_COMMENT : // コメントの場合は何もしない break; default: // それ以外の場合 -> "そのまま"出力 echo ... $text ; break; } } } ?> 関連キーワード: 例 , tokenizer , コメント ...
https://man.plustar.jp/php/tokenizer.examples.html - [similar]
Ev クラス 6248
« Periodic ウォッチャーの操作モード Ev::backend » PHP Manual Ev Ev クラス Ev クラス (PECL ev >= ... UN_NOWAIT = 1 ; const int RUN_ONCE = 2 ; const int BREAK_CANCEL = 0 ; const int BREAK_ONE = 1 ; const int B ... v::stop() あるいは EvLoop::stop() に渡すフラグ Ev::BREAK_CANCEL ブレーク操作をキャンセルします。 Ev::BREAK_ ... あるいは EvLoop::run() ) の呼び出しを返します。 Ev::BREAK_ALL ネストしたすべての Ev::run() (あるいは EvLoop: ...
https://man.plustar.jp/php/class.ev.html - [similar]
ストリームラッパーとして登録するクラスの例 6248
« 例 php_user_filter » PHP Manual 例 ストリームラッパーとして登録するクラスの例 ストリームラッパ ... $offset ; return true ; } else { return false ; } break; case SEEK_CUR : if ( $offset >= 0 ) { $this -> po ... $offset ; return true ; } else { return false ; } break; case SEEK_END : if ( strlen ( $GLOBALS [ $this -> ... $offset ; return true ; } else { return false ; } break; default: return false ; } } function stream_metad ...
https://man.plustar.jp/php/stream.streamwrapper.example-1.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT