検索

phrase: max: clip:
target: order:
Results of 191 - 200 of about 1267 for value (0.025 sec.)
Returns the value at a given index 3309
« Ds\Vector::first Ds\Vector::insert » PHP Manual Vector Returns the value at a given index Ds\V ... et (PECL ds >= 1.0.0) Ds\Vector::get — Returns the value at a given index 説明 public Ds\Vector::get ( int ... $index ): mixed Returns the value at a given index. パラメータ index The index to ac ... cess, starting at 0. 戻り値 The value at the requested index. エラー / 例外 OutOfRangeEx ...
https://man.plustar.jp/php/ds-vector.get.html - [similar]
Selects the group heads by the max value of a numeric field or function query 3309
« SolrCollapseFunction::setHint SolrCollapseFunction::setMin » PHP Manual SolrCollapseFunction S ... elects the group heads by the max value of a numeric field or function query SolrCollapseF ... ction::setMax — Selects the group heads by the max value of a numeric field or function query 説明 public S ... ollapseFunction Selects the group heads by the max value of a numeric field or function query. パラメータ m ...
https://man.plustar.jp/php/solrcollapsefunction.setmax.html - [similar]
指定した配列の要素にコールバック関数を適用する 3292
« array_keys array_merge_recursive » PHP Manual 配列 関数 指定した配列の要素にコールバック関数を ... ラムダ関数を使用する例 <?php $func = function( int $value ): int { return $value * 2 ; }; print_r ( array_ma ... 以下の書き方も出来ます: print_r ( array_map ( fn ( $value ): int => $value * 2 , range ( 1 , 5 ))); ?> Array ... () - 文字列キーの例 <?php $arr = [ 'stringkey' => 'value' ]; function cb1 ( $a ) { return [ $a ]; } functio ... y(1) { ["stringkey"]=> array(1) { [0]=> string(5) "value" } } array(1) { [0]=> array(2) { [0]=> string(5) " ...
https://man.plustar.jp/php/function.array-map.html - [similar]
文字列を処理し、変数に代入する 3292
« ord print » PHP Manual String 関数 文字列を処理し、変数に代入する parse_str (PHP 4, PHP 5, PHP ... た。 例 例1 parse_str() の使用法 <?php $str = "first=value&arr[]=foo+bar&arr[]=baz" ; // 推奨 parse_str ( $st ... r , $output ); echo $output [ 'first' ]; // value echo $output [ 'arr' ][ 0 ]; // foo bar echo $outp ... お勧めできない parse_str ( $str ); echo $first ; // value echo $arr [ 0 ]; // foo bar echo $arr [ 1 ]; // ba ... 例2 parse_str() name mangling <?php parse_str ( "My Value=Something" ); echo $My_Value ; // Something parse_ ...
https://man.plustar.jp/php/function.parse-str.html - [similar]
現在のキャッシュの有効期限を取得/設定する 3292
« session_abort session_cache_limiter » PHP Manual セッション関数 現在のキャッシュの有効期限を取 ... 限を取得/設定する 説明 session_cache_expire ( ? int $value = null ): int | false session_cache_expire() は現在 ... e_expire() をコールする必要があります。 パラメータ value value が指定され、 null でない場合、 現在のキャッシ ... ュの有効期限は、 value で置換されます。 注意 : session.cache_limiter が n ... ocache 以外の 値にセットされている場合にのみ value が有効となります。 戻り値 session.cache_expire の現 ...
https://man.plustar.jp/php/function.session-cache-expire.html - [similar]
リフレクションAPI を使ってアトリビュートを読み取る 3292
« アトリビュートの文法 アトリビュートクラスを宣言する » PHP Manual アトリビュート リフレクション ... 取る <?php #[Attribute] class MyAttribute { public $value ; public function __construct ( $value ) { $this - ... > value = $value ; } } #[MyAttribute(value: 1234)] class T ... :class)); /* string(11) "MyAttribute" array(1) { ["value"]=> int(1234) } object(MyAttribute)#3 (1) { ["valu ...
https://man.plustar.jp/php/language.attributes.reflection.html - [similar]
設定を変更するには 3269
« どこで設定を行うのか 言語リファレンス » PHP Manual 実行時設定 設定を変更するには 設定を変更する ... ni ディレクティブのリスト を参照してください。 php_value name value 指定した設定オプションに値を設定します。 ... 用してください。 注意 : 論理値を設定する場合には php_value を使用しないでください。代わりに、 php_flag (下記 ... DIR である設定オプションで利用できます。 php_admin_value name value 指定した設定オプションに値を設定します。 ... ccess ファイルでは利用できません。また、 php_admin_value で設定された設定オプションの値は、 .htaccess や in ...
https://man.plustar.jp/php/configuration.changes.html - [similar]
クォートされた文字列のクォート部分を取り除く 3269
« stripos stristr » PHP Manual String 関数 クォートされた文字列のクォート部分を取り除く stripsla ... ashes() の使用 <?php function stripslashes_deep ( $value ) { $value = is_array ( $value ) ? array_map ( 'st ... ripslashes_deep' , $value ) : stripslashes ( $value ); return $value ; } // ...
https://man.plustar.jp/php/function.stripslashes.html - [similar]
Returns the Relaxed Extended JSON representation of a BSON value 3252
« MongoDB\BSON\toPHP MongoDB\BSON\Binary » PHP Manual 関数 Returns the Relaxed Extended JSON rep ... resentation of a BSON value MongoDB\BSON\toRelaxedExtendedJSON (mongodb >=1.3. ... the Relaxed Extended JSON representation of a BSON value 説明 MongoDB\BSON\toRelaxedExtendedJSON ( string $ ... b APIs and humans. パラメータ bson ( string ) BSON value to be converted. 戻り値 The converted JSON value. ... ー / 例外 Throws MongoDB\Driver\Exception\UnexpectedValueException if the input did not contain exactly one ...
https://man.plustar.jp/php/function.mongodb.bson-torelaxedextendedjson.html - [similar]
SplQueue クラス 3230
« SplStack::setIteratorMode SplQueue::__construct » PHP Manual データ構造 SplQueue クラス SplQue ... ) public dequeue (): mixed public enqueue ( mixed $value ): void public setIteratorMode ( int $mode ): void ... lic SplDoublyLinkedList::add ( int $index , mixed $value ): void public SplDoublyLinkedList::bottom (): mix ... oublyLinkedList::offsetSet ( ? int $index , mixed $value ): void public SplDoublyLinkedList::offsetUnset ( ... (): void public SplDoublyLinkedList::push ( mixed $value ): void public SplDoublyLinkedList::rewind (): voi ...
https://man.plustar.jp/php/class.splqueue.html - [similar]