検索

phrase: max: clip:
target: order:
Results of 251 - 260 of about 759 for key (0.073 sec.)
変数をデータ領域にキャッシュする 3533
« apcu_sma_info APCUIterator » PHP Manual APCu 関数 変数をデータ領域にキャッシュする apcu_store ... データ領域にキャッシュする 説明 apcu_store ( string $key , mixed $var , int $ttl = 0 ): bool apcu_store ( a ... ッシュから取り除かれるまで)持続します。 パラメータ key この名前を用いて変数を格納します。 key は キャッシ ... ュ内で一意です。そのため、同一の key で新しい値を格納すると、元の値は上書きされます。 v ... シュ , 変数 , apcu , 領域 , データ , 格納 , store , key , var , values ...
https://man.plustar.jp/php/function.apcu-store.html - [similar]
CSR を文字列としてエクスポートする 3533
« openssl_csr_export_to_file openssl_csr_get_public_key » PHP Manual OpenSSL 関数 CSR を文字列と ... array( "commonName" => "example.com" , ); $private_key = openssl_pkey_new (array( "private_key_bits" => 2 ... 048 , "private_key_type" => OPENSSL_KEYTYPE_RSA , )); $configargs = a ... n' ); $csr = openssl_csr_new ( $subject , $private_key , $configargs ); openssl_csr_export ( $csr , $csr_ ...
https://man.plustar.jp/php/function.openssl-csr-export.html - [similar]
nonce と秘密鍵を使ってメッセージを暗号化する(認証なし) 3533
« sodium_crypto_stream_xchacha20_keygen sodium_crypto_stream_xchacha20 » PHP Manual Sodium 関数 ... 20_xor ( string $message , string $nonce , string $key ): string nonce と 秘密鍵 key を使って message を暗 ... ge 暗号化するメッセージ。 nonce 24バイトの nonce。 key 暗号化キー。 sodium_crypto_stream_xchacha20_keygen ... ージ , sodium , crypto , xchacha , stream , string , key ...
https://man.plustar.jp/php/function.sodium-crypto-stream-xchacha20-xor.html - [similar]
フラグを設定する 3533
« RegexIterator::getRegex RegexIterator::setMode » PHP Manual RegexIterator フラグを設定する Reg ... egexIterator のフラグ 値 定数 1 RegexIterator::USE_KEY 戻り値 値を返しません。 例 例1 RegexIterator::setF ... $regexIterator -> setFlags ( RegexIterator :: USE_KEY ); foreach ( $regexIterator as $key => $value ) { ... echo $key . ' => ' . $value . "\n" ; } ?> 上の例の出力は以下 ...
https://man.plustar.jp/php/regexiterator.setflags.html - [similar]
指定したインデックスに新しい値をセットする 3512
« ArrayObject::offsetGet ArrayObject::offsetUnset » PHP Manual ArrayObject 指定したインデックスに ... ットする 説明 public ArrayObject::offsetSet ( mixed $key , mixed $value ): void 指定したインデックスに新しい ... 値を設定します。 パラメータ key 設定したいインデックス。 value key の新しい値。 戻 ... デックス , セット , string , 指定 , 値 , offsetSet , key , 設定 , public ...
https://man.plustar.jp/php/arrayobject.offsetset.html - [similar]
FilterIterator クラス 3512
« FilesystemIterator::setFlags FilterIterator::accept » PHP Manual イテレータ FilterIterator クラ ... mixed public getInnerIterator (): Iterator public key (): mixed public next (): void public rewind (): v ... erIterator (): ? Iterator public IteratorIterator::key (): mixed public IteratorIterator::next (): void p ... terator — 内部イテレータを取得する FilterIterator::key — 現在のキーを取得する FilterIterator::next — イテ ... c , クラス , 取得 , 要素 , valid , rewind , next , key , getInnerIterator ...
https://man.plustar.jp/php/class.filteriterator.html - [similar]
The SVM class 3512
« 例 SVM::__construct » PHP Manual SVM The SVM class The SVM class (PECL svm >= 0.1.0) はじめに ... - currently unsupported. SVM::OPT_TYPE The options key for the SVM type SVM::OPT_KERNEL_TYPE The options ... F and Sigmoid kernel types. SVM::OPT_NU The option key for the nu parameter, only used in the NU_ SVM typ ... es SVM::OPT_EPS The option key for the Epsilon parameter, used in epsilon regress ... KERNEL , type , NU , array , public , regression , key ...
https://man.plustar.jp/php/class.svm.html - [similar]
Adds an HTTP header to the headers of the request 3512
« EventHttpRequest EventHttpRequest::cancel » PHP Manual EventHttpRequest Adds an HTTP header to ... 説明 public EventHttpRequest::addHeader ( string $key , string $value , int $type ): bool Adds an HTTP h ... eader to the headers of the request. パラメータ key Header name. value Header value. type One of Event ... EventHttpRequest , the , of , addHeader , string , key , type ...
https://man.plustar.jp/php/eventhttprequest.addheader.html - [similar]
指定した値を配列で検索し、見つかった場合に対応する最初のキーを返す 3512
« array_reverse array_shift » PHP Manual 配列 関数 指定した値を配列で検索し、見つかった場合に対応 ... ッチした値に対するキーを返すためには、代わりに array_keys() にパラメータ search_value を付けて使用してくださ ... blue' , 1 => 'red' , 2 => 'green' , 3 => 'red' ); $key = array_search ( 'green' , $array ); // $key = 2; ... $key = array_search ( 'red' , $array ); // $key = 1; ?> ... 参考 array_keys() - 配列のキーすべて、あるいはその一部を返す arra ...
https://man.plustar.jp/php/function.array-search.html - [similar]
CSR の subject を返す 3512
« openssl_csr_get_public_key openssl_csr_new » PHP Manual OpenSSL 関数 CSR の subject を返す ope ... "emailAddress" => "wez@example.com" , ); $private_key = openssl_pkey_new (array( "private_key_bits" => 2 ... 048 , "private_key_type" => OPENSSL_KEYTYPE_RSA , )); $configargs = a ... ption' ); $csr = openssl_csr_new ( $subject , $privkey , $configargs ); print_r ( openssl_csr_get_subject ... _csr_new() - CSR を作成する openssl_csr_get_public_key() - CSR の公開鍵を返す openssl_x509_parse() - X509 ...
https://man.plustar.jp/php/function.openssl-csr-get-subject.html - [similar]