検索

phrase: max: clip:
target: order:
Results of 171 - 180 of about 3871 for FALSE (0.148 sec.)
Finalizes all add/deletes made to the index 2454
« SolrClient::addDocuments SolrClient::__construct » PHP Manual SolrClient Finalizes all add/del ... 説明 public SolrClient::commit ( bool $softCommit = false , bool $waitSearcher = true , bool $expungeDeletes ... = false ): SolrUpdateResponse This method finalizes all ad ... mmit ([ int $maxSegments = 0 [, bool $softCommit = false [, bool $waitSearcher = true[, bool $expungeDelete ... s = false ]]] ) PECL solr 0.9.2 Signature: SolrClient::commi ...
https://man.plustar.jp/php/solrclient.commit.html - [similar]
ReflectionMethod クラス 2429
« ReflectionFunctionAbstract::__toString ReflectionMethod::__construct » PHP Manual リフレクショ ... rt ( string $class , string $name , bool $return = false ): string public getClosure ( ? object $object = n ... ectionFunctionAbstract::getDocComment (): string | false public ReflectionFunctionAbstract::getEndLine (): ... int | false public ReflectionFunctionAbstract::getExtension () ... ionFunctionAbstract::getExtensionName (): string | false public ReflectionFunctionAbstract::getFileName (): ...
https://man.plustar.jp/php/class.reflectionmethod.html - [similar]
Determines whether the map contains a given key 2429
« Ds\Map::get Ds\Map::hasValue » PHP Manual Map Determines whether the map contains a given key ... k for. 戻り値 Returns true if the key could found, false otherwise. 例 例1 Ds\Map::hasKey() example <?php $ ... )); // true var_dump ( $map -> hasKey ( "e" )); // false ?> 上の例の出力は、 たとえば以下のようになります。 ... bool(true) bool(false) 関連キーワード: key , Determines , whether , map ...
https://man.plustar.jp/php/ds-map.haskey.html - [similar]
Determines whether the map contains a given value 2429
« Ds\Map::hasKey Ds\Map::intersect » PHP Manual Map Determines whether the map contains a given ... for. 戻り値 Returns true if the value could found, false otherwise. 例 例1 Ds\Map::hasValue() example <?php ... )); // true var_dump ( $map -> hasValue ( 4 )); // false ?> 上の例の出力は、 たとえば以下のようになります。 ... bool(true) bool(false) 関連キーワード: Determines , map , contains , giv ...
https://man.plustar.jp/php/ds-map.hasvalue.html - [similar]
変数の型が float かどうか調べる 2429
« is_double is_int » PHP Manual 変数操作 関数 変数の型が float かどうか調べる is_float (PHP 4, P ... value が float 型 の場合 true 、 そうでない場合は false を返します。 例 例1 is_float() の例 var_dump(is_fl ... ?> 上の例の出力は以下となります。 bool(true) bool(false) bool(false) bool(true) bool(true) bool(false) 参考 ...
https://man.plustar.jp/php/function.is-float.html - [similar]
Decrypts crypttext with given parameters 2429
« mcrypt_create_iv mcrypt_enc_get_algorithms_name » PHP Manual Mcrypt 関数 Decrypts crypttext wi ... $data , string $mode , string $iv = ? ): string | false Decrypts the data and returns the unencrypted data ... ipher, the function will emit a warning and return false data The data that will be decrypted with the give ... が指定されなかった場合は、 この関数は警告を発して false を返します。 戻り値 Returns the decrypted data as ... a string 失敗した場合に false を返します. 参考 mcrypt_encrypt() - 指定したパラメ ...
https://man.plustar.jp/php/function.mcrypt-decrypt.html - [similar]
配列の内部ポインタを先頭の要素にセットする 2429
« range rsort » PHP Manual 配列 関数 配列の内部ポインタを先頭の要素にセットする reset (PHP 4, PH ... り値 配列の最初の要素の値を返します。 配列が空の場合 false を返します。 警告 この関数は論理値 false を返す可能 ... 性がありますが、 false として評価される値を返す可能性もあります。 詳細につ ... 関数を実行した場合の戻り値は、 配列の先頭要素に bool false がある配列に対して 実行した場合の戻り値と区別できま ... せん。 配列の先頭に false が含まれている可能性がある値を適切にチェックするに ...
https://man.plustar.jp/php/function.reset.html - [similar]
新しい SimpleXMLElement オブジェクトを作成する 2429
« SimpleXMLElement::children SimpleXMLElement::count » PHP Manual SimpleXMLElement 新しい Simple ... tring $data , int $options = 0 , bool $dataIsURL = false , string $namespaceOrPrefix = "" , bool $isPrefix ... = false ) 新しい SimpleXMLElement オブジェクトを作成します ... なるでしょう。 dataIsURL デフォルトでは dataIsURL は false です。 data が、文字列データではなく XML ドキュメン ... efix がプレフィックスの場合は true 、 URI の場合は false 。デフォルトは false 。 エラー / 例外 XML データ内 ...
https://man.plustar.jp/php/simplexmlelement.construct.html - [similar]
ステートメントのSQLを取得する 2429
« SQLite3Stmt::execute SQLite3Stmt::paramCount » PHP Manual SQLite3Stmt ステートメントのSQLを取得 ... る 説明 public SQLite3Stmt::getSQL ( bool $expand = false ): string | false プリペアドステートメントのSQLを取 ... 得します。 expand が false の場合、 変更されていないSQLを取得します。 expand ... ペアドステートメントのSQLを返します。 失敗した場合に false を返します エラー / 例外 expand を true に指定した ...
https://man.plustar.jp/php/sqlite3stmt.getsql.html - [similar]
ストリームラッパーとして登録するクラスの例 2429
« 例 php_user_filter » PHP Manual 例 ストリームラッパーとして登録するクラスの例 ストリームラッパ ... position = $offset ; return true ; } else { return false ; } break; case SEEK_CUR : if ( $offset >= 0 ) { $ ... osition += $offset ; return true ; } else { return false ; } break; case SEEK_END : if ( strlen ( $GLOBALS ... rname ]) + $offset ; return true ; } else { return false ; } break; default: return false ; } } function st ... OBALS [ $varname ] = '' ; } return true ; } return false ; } } stream_wrapper_register ( "var" , "VariableS ...
https://man.plustar.jp/php/stream.streamwrapper.example-1.html - [similar]