検索

phrase: max: clip:
target: order:
Results of 181 - 190 of about 1200 for var (0.028 sec.)
文字エンコーディングを検出する 3326
« mb_decode_numericentity mb_detect_order » PHP Manual マルチバイト文字列 関数 文字エンコーディン ... ありませんが、 // UTF-8 がもっとも近いと判定されます var_dump ( mb_detect_encoding ( $str , [ 'ASCII' , 'UT ... F-8' ], false )); var_dump ( mb_detect_encoding ( $str , [ 'ASCII' , 'UT ... // strice パラメータを指定しても結果は変わりません var_dump ( mb_detect_encoding ( $str , [ 'ASCII' , 'UT ... F-8' , 'ISO-8859-1' ], false )); var_dump ( mb_detect_encoding ( $str , [ 'ASCII' , 'UT ...
https://man.plustar.jp/php/function.mb-detect-encoding.html - [similar]
カレンダーのロケールに基づいて、週の始めの日を返す 3326
« IntlCalendar::getErrorMessage IntlCalendar::getGreatestMinimum » PHP Manual IntlCalendar カレン ... IntlCalendar :: createInstance ( NULL , 'es_ES' ); var_dump ( $cal1 -> getFirstDayOfWeek ()); // Monday $ ... > set ( 2013 , 1 /* February */ , 3 ); // a Sunday var_dump ( $cal1 -> get ( IntlCalendar :: FIELD_WEEK_O ... IntlCalendar :: createInstance ( NULL , 'en_US' ); var_dump ( $cal2 -> getFirstDayOfWeek ()); // Sunday $ ... > set ( 2013 , 1 /* February */ , 3 ); // a Sunday var_dump ( $cal2 -> get ( IntlCalendar :: FIELD_WEEK_O ...
https://man.plustar.jp/php/intlcalendar.getfirstdayofweek.html - [similar]
コードポイントが制御文字かどうかを調べる 3326
« IntlChar::isblank IntlChar::isdefined » PHP Manual IntlChar コードポイントが制御文字かどうかを ... 返します。 例 例1 さまざまなコードポイントの例 <?php var_dump ( IntlChar :: iscntrl ( "A" )); var_dump ( In ... tlChar :: iscntrl ( " " )); var_dump ( IntlChar :: iscntrl ( "\n" )); var_dump ( I ...
https://man.plustar.jp/php/intlchar.iscntrl.html - [similar]
比較演算子 3326
« ビット演算子 エラー制御演算子 » PHP Manual 演算子 比較演算子 比較演算子 比較演算子は、その名前 ... られるような驚きの結果が生じる場合があります: <?php var_dump ( 0 == "a" ); var_dump ( "1" == "01" ); var_d ... ump ( "10" == "1e1" ); var_dump ( 100 == "1e2" ); switch ( "a" ) { case 0 : e ... <?php // Bool and null are compared as bool always var_dump ( 1 == TRUE ); // TRUE - same as (bool)1 == T ... RUE var_dump ( 0 == FALSE ); // TRUE - same as (bool)0 == ...
https://man.plustar.jp/php/language.operators.comparison.html - [similar]
文字列 3326
« 浮動小数点数 数値形式の文字列 » PHP Manual 型 文字列 文字列 string は、文字が連結されたものです ... ho 'This will not expand: \n a newline' ; // 出力: Variables do not $expand $either echo 'Variables do no ... 続する <?php $values = [<<<END a b c END, 'd e f' ]; var_dump ( $values ); 上の例の PHP 7.3 での出力は、この ... EOD; /* 変数を使用するより複雑な例 */ class foo { var $foo ; var $bar ; function __construct () { $this ... ます。 例9 ヒアドキュメントを引数に使用する例 <?php var_dump (array(<<<EOD foobar! EOD )); ?> static変数や ...
https://man.plustar.jp/php/language.types.string.html - [similar]
Checks if this is the default read concern 3326
« MongoDB\Driver\ReadConcern::getLevel MongoDB\Driver\ReadConcern::serialize » PHP Manual MongoD ... $rc = new MongoDB \ Driver \ ReadConcern ( null ); var_dump ( $rc -> isDefault ()); $rc = new MongoDB \ D ... rn ( MongoDB \ Driver \ ReadConcern :: MAJORITY ); var_dump ( $rc -> isDefault ()); $manager = new MongoD ... =majority' ); $rc = $manager -> getReadConcern (); var_dump ( $rc -> isDefault ()); $manager = new MongoD ... 27.0.0.1/' ); $rc = $manager -> getReadConcern (); var_dump ( $rc -> isDefault ()); ?> 上の例の出力は以下 ...
https://man.plustar.jp/php/mongodb-driver-readconcern.isdefault.html - [similar]
コンテンツを取得する 3326
« Yaf_Response_Abstract::__destruct Yaf_Response_Abstract::getHeader » PHP Manual Yaf_Response_A ... ody ( "Hello" )-> setBody ( " World" , "footer" ); var_dump ( $response -> getBody ()); // デフォルト var ... ponse_Abstract :: DEFAULT_BODY )); // 上の行と同じ var_dump ( $response -> getBody ( "footer" )); var_dum ...
https://man.plustar.jp/php/yaf-response-abstract.getbody.html - [similar]
Removes and returns a value by index 3297
« Ds\Deque::reduce Ds\Deque::reverse » PHP Manual Deque Removes and returns a value by index Ds\ ... p $deque = new \ Ds \ Deque ([ "a" , "b" , "c" ]); var_dump ( $deque -> remove ( 1 )); var_dump ( $deque ... -> remove ( 0 )); var_dump ( $deque -> remove ( 0 )); ?> 上の例の出力は、 ...
https://man.plustar.jp/php/ds-deque.remove.html - [similar]
Removes and returns the first value 3297
« Ds\Deque::set Ds\Deque::slice » PHP Manual Deque Removes and returns the first value Ds\Deque: ... p $deque = new \ Ds \ Deque ([ "a" , "b" , "c" ]); var_dump ( $deque -> shift ()); var_dump ( $deque -> s ... hift ()); var_dump ( $deque -> shift ()); ?> 上の例の出力は、 た ...
https://man.plustar.jp/php/ds-deque.shift.html - [similar]
Removes and returns a value by index 3297
« Ds\Sequence::reduce Ds\Sequence::reverse » PHP Manual Sequence Removes and returns a value by ... equence = new \ Ds \ Vector ([ "a" , "b" , "c" ]); var_dump ( $sequence -> remove ( 1 )); var_dump ( $seq ... uence -> remove ( 0 )); var_dump ( $sequence -> remove ( 0 )); ?> 上の例の出力 ...
https://man.plustar.jp/php/ds-sequence.remove.html - [similar]