検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 134 for eol (0.004 sec.)
指定した色チャネルの値を正規化したものを取得する 10733
« ImagickPixel::getColorQuantum ImagickPixel::getColorValueQuantum » PHP Manual ImagickPixel 指定 ... r -> getColorValue ( Imagick :: COLOR_ALPHA ). PHP_EOL ; echo "" . PHP_EOL ; echo "Red value is " . $colo ... r -> getColorValue ( Imagick :: COLOR_RED ). PHP_EOL ; echo "Green value is " . $color -> getColorValue ... ( Imagick :: COLOR_GREEN ). PHP_EOL ; echo "Blue value is " . $color -> getColorValue ... ( Imagick :: COLOR_BLUE ). PHP_EOL ; echo "" . PHP_EOL ; echo "Cyan value is " . $col ...
https://man.plustar.jp/php/imagickpixel.getcolorvalue.html - [similar]
変数の型名をデバッグしやすい形で取得する 10021
« floatval get_defined_vars » PHP Manual 変数操作 関数 変数の型名をデバッグしやすい形で取得する ... pe() の例 <?php echo get_debug_type ( null ) . PHP_EOL ; echo get_debug_type ( true ) . PHP_EOL ; echo ge ... t_debug_type ( 1 ) . PHP_EOL ; echo get_debug_type ( 0.1 ) . PHP_EOL ; echo get ... _debug_type ( "foo" ) . PHP_EOL ; echo get_debug_type ([]) . PHP_EOL ; $fp = fopen ... FILE__ , 'rb' ); echo get_debug_type ( $fp ) . PHP_EOL ; fclose ( $fp ); echo get_debug_type ( $fp ) . PH ...
https://man.plustar.jp/php/function.get-debug-type.html - [similar]
The EventBuffer class 9888
« EventBase::stop EventBuffer::add » PHP Manual Event The EventBuffer class The EventBuffer clas ... ス概要 class EventBuffer { /* Constants */ const int EOL_ANY = 0 ; const int EOL_CRLF = 1 ; const int EOL_C ... RLF_STRICT = 2 ; const int EOL_LF = 3 ; const int PTR_SET = 0 ; const int PTR_ADD ... d $fd , int $howmuch ): int public readLine ( int $eol_style ): string public search ( string $what , int ... $start = -1 , int $end = -1 ): mixed public searchEol ( int $start = -1 , int $eol_style = EventBuffer:: ...
https://man.plustar.jp/php/class.eventbuffer.html - [similar]
日付/時刻 の算術 9635
« 例 DateTime » PHP Manual 例 日付/時刻 の算術 日付/時刻 の算術 以下の例は、DST(夏時間) への移行 ... "Start: " , $dt -> format ( "Y-m-d H:i:s P" ), PHP_EOL ; $dt = $dt -> add (new DateInterval ( "PT3H" )); ... o "End: " , $dt -> format ( "Y-m-d H:i:s P" ), PHP_EOL ; ?> 上の例の出力は以下となります。 Start: 2015-11 ... "Start: " , $dt -> format ( "Y-m-d H:i:s P" ), PHP_EOL ; $dt = $dt -> modify ( "+24 hours" ); echo "End: ... " , $dt -> format ( "Y-m-d H:i:s P" ), PHP_EOL ; ?> 上の例の出力は以下となります。 Start: 2015-11 ...
https://man.plustar.jp/php/datetime.examples-arithmetic.html - [similar]
保存した数値を減らす 9177
« apcu_clear_cache apcu_delete » PHP Manual APCu 関数 保存した数値を減らす apcu_dec (PECL apcu > ... <?php echo "Let's do something with success" , PHP_EOL ; apcu_store ( 'anumber' , 42 ); echo apcu_fetch ( ... 'anumber' ), PHP_EOL ; echo apcu_dec ( 'anumber' ), PHP_EOL ; echo apcu ... _dec ( 'anumber' , 10 ), PHP_EOL ; echo apcu_dec ( 'anumber' , 10 , $success ), PHP ... _EOL ; var_dump ( $success ); echo "Now, let's fail" , ...
https://man.plustar.jp/php/function.apcu-dec.html - [similar]
保存した数値を増やす 9177
« apcu_fetch apcu_key_info » PHP Manual APCu 関数 保存した数値を増やす apcu_inc (PECL apcu >= 4. ... <?php echo "Let's do something with success" , PHP_EOL ; apcu_store ( 'anumber' , 42 ); echo apcu_fetch ( ... 'anumber' ), PHP_EOL ; echo apcu_inc ( 'anumber' ), PHP_EOL ; echo apcu ... _inc ( 'anumber' , 10 ), PHP_EOL ; echo apcu_inc ( 'anumber' , 10 , $success ), PHP ... _EOL ; var_dump ( $success ); echo "Now, let's fail" , ...
https://man.plustar.jp/php/function.apcu-inc.html - [similar]
IntlDateFormatter が使用するパターンを設定する 9117
« IntlDateFormatter::setLenient IntlDateFormatter::setTimeZone » PHP Manual IntlDateFormatter In ... rmatter is : ' , datefmt_get_pattern ( $fmt ), PHP_EOL ; echo 'First Formatted output with pattern is ' , ... datefmt_format ( $fmt , 0 ), PHP_EOL ; datefmt_set_pattern ( $fmt , 'yyyyMMdd hh:mm:ss ... rmatter is : ' , datefmt_get_pattern ( $fmt ), PHP_EOL ; echo 'Second Formatted output with pattern is ' ... , datefmt_format ( $fmt , 0 ), PHP_EOL ; ?> 例2 オブジェクト指向の例 <?php $fmt = new Int ...
https://man.plustar.jp/php/intldateformatter.setpattern.html - [similar]
古い値を新しい値に更新する 8863
« apcu_cache_info apcu_clear_cache » PHP Manual APCu 関数 古い値を新しい値に更新する apcu_cas (P ... u_store ( 'foobar' , 2 ); echo '$foobar = 2' , PHP_EOL ; echo '$foobar == 1 ? 2 : 1 = ' , ( apcu_cas ( 'f ... oobar' , 1 , 2 ) ? 'ok' : 'fail' ), PHP_EOL ; echo '$foobar == 2 ? 1 : 2 = ' , ( apcu_cas ( 'f ... oobar' , 2 , 1 ) ? 'ok' : 'fail' ), PHP_EOL ; echo '$foobar = ' , apcu_fetch ( 'foobar' ), PHP ... _EOL ; echo '$f__bar == 1 ? 2 : 1 = ' , ( apcu_cas ( 'f ...
https://man.plustar.jp/php/function.apcu-cas.html - [similar]
8791
« リソース型 Event flags » PHP Manual Event 例 例 例1 Simple HTTP client <?php // Read callback ... "DNS error: " , $bev -> getDnsErrorString (), PHP_EOL ; } echo "Closing\n" ; $base -> exit (); exit( "Do ... "DNS error: " , $bev -> getDnsErrorString (), PHP_EOL ; } echo "Closing\n" ; $base -> exit (); exit( "Do ... :: getSupportedMethods () as $m ) { echo $m , PHP_EOL ; } // Avoiding "select" method $cfg = new EventCo ... "Event method used: " , $base -> getMethod (), PHP_EOL ; echo "Features:\n" ; $features = $base -> getFea ...
https://man.plustar.jp/php/event.examples.html - [similar]
Sets a callback for specified URI 8598
« EventHttp::setAllowedMethods EventHttp::setDefaultCallback » PHP Manual EventHttp Sets a callb ... \n" ; echo "Command:" , $req -> getCommand (), PHP_EOL ; echo "URI:" , $req -> getUri (), PHP_EOL ; echo ... (); while ( $s = $buf -> readLine ( EventBuffer :: EOL_ANY )) { echo $s , PHP_EOL ; } echo "No more data ... ction _http_about ( $req ) { echo __METHOD__ , PHP_EOL ; echo "URI: " , $req -> getUri (), PHP_EOL ; echo ... p_default ( $req , $data ) { echo __METHOD__ , PHP_EOL ; echo "URI: " , $req -> getUri (), PHP_EOL ; echo ...
https://man.plustar.jp/php/eventhttp.setcallback.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT