検索

phrase: max: clip:
target: order:
Results of 431 - 440 of about 1070 for Dump (0.024 sec.)
quoted-printable 文字列を 8 ビット文字列に変換する 2952
« printf quoted_printable_encode » PHP Manual String 関数 quoted-printable 文字列を 8 ビット文字 ... able_encode ( 'Möchten Sie ein paar Äpfel?' ); var_dump ( $encoded ); var_dump ( quoted_printable_decode ( ...
https://man.plustar.jp/php/function.quoted-printable-decode.html - [similar]
ストリーミングのためにハッシュを初期化する 2952
« sodium_crypto_generichash_final sodium_crypto_generichash_keygen » PHP Manual Sodium 関数 スト ... dium_crypto_generichash_final ( $state , 32 ); var_dump ( sodium_bin2hex ( $final )); $allAtOnce = sodium_ ... pto_generichash ( implode ( '' , $messages )); var_dump ( sodium_bin2hex ( $allAtOnce )); ?> 上の例の出力は ...
https://man.plustar.jp/php/function.sodium-crypto-generichash-init.html - [similar]
sodium_crypto_secretbox で使うランダムな鍵を生成する 2952
« sodium_crypto_scalarmult sodium_crypto_secretbox_open » PHP Manual Sodium 関数 sodium_crypto_s ... ?php $key = sodium_crypto_secretbox_keygen (); var_dump ( sodium_bin2hex ( $key ) ); ?> 上の例の出力は、 た ... om_bytes ( SODIUM_CRYPTO_SECRETBOX_KEYBYTES ); var_dump ( mb_strlen ( $key , '8bit' ) === mb_strlen ( $byt ...
https://man.plustar.jp/php/function.sodium-crypto-secretbox-keygen.html - [similar]
指定した時刻まで実行を遅延する 2952
« time_nanosleep uniqid » PHP Manual その他の関数 指定した時刻まで実行を遅延する time_sleep_unti ... ) の例 <?php // false を返し、警告を発生します var_dump ( time_sleep_until ( time ()- 1 )); // 高速なコンピ ... タ上でのみ動作します。実行を 0.2 秒遅延します。 var_dump ( time_sleep_until ( microtime ( true )+ 0.2 )); ? ...
https://man.plustar.jp/php/function.time-sleep-until.html - [similar]
Memcached のオプションの値を設定する 2952
« Memcached::setOption Memcached::setSaslAuthData » PHP Manual Memcached Memcached のオプションの ... オプションの設定 <?php $m = new Memcached (); var_dump ( $m -> getOption ( Memcached :: OPT_HASH ) == Mem ... , Memcached :: OPT_PREFIX_KEY => "widgets" )); var_dump ( $m -> getOption ( Memcached :: OPT_HASH ) == Mem ...
https://man.plustar.jp/php/memcached.setoptions.html - [similar]
Returns an object for BSON serialization 2952
« MongoDB\Driver\WriteConcern MongoDB\Driver\WriteConcern::__construct » PHP Manual MongoDB\Driv ... MongoDB \ Driver \ WriteConcern :: MAJORITY ); var_dump ( $wc -> bsonSerialize ()); echo "\n" , MongoDB \ ... B \ Driver \ WriteConcern ( 2 , 1000 , true ); var_dump ( $wc -> bsonSerialize ()); echo "\n" , MongoDB \ ...
https://man.plustar.jp/php/mongodb-driver-writeconcern.bsonserialize.html - [similar]
Returns the WriteResult for the failed write operation 2952
« MongoDB\Driver\Exception\WriteException Class Tree » PHP Manual MongoDB\Driver\Exception\Write ... r = $writeResult -> getWriteConcernError ()) { var_dump ( $writeConcernError ); } if ( $writeErrors = $wri ... teResult -> getWriteErrors ()) { var_dump ( $writeErrors ); } } ?> 上の例の出力は、 たとえば ...
https://man.plustar.jp/php/mongodb-driver-writeexception.getwriteresult.html - [similar]
関数が戻り値の型を指定しているかを調べる 2952
« ReflectionFunctionAbstract::getTentativeReturnType ReflectionFunctionAbstract::hasTentativeRet ... ection1 = new ReflectionFunction ( 'to_int' ); var_dump ( $reflection1 -> hasReturnType ()); 上の例の出力は ... n2 = new ReflectionFunction ( 'array_merge' ); var_dump ( $reflection2 -> hasReturnType ()); 上の例の出力は ...
https://man.plustar.jp/php/reflectionfunctionabstract.hasreturntype.html - [similar]
プロパティがコンストラクタの引数から昇格したものかを調べる 2952
« ReflectionProperty::isPrivate ReflectionProperty::isProtected » PHP Manual ReflectionProperty ... baz = 42 ; $ro = new ReflectionObject ( $o ); var_dump ( $ro -> getProperty ( 'bar' )-> isPromoted ()); v ... ar_dump ( $ro -> getProperty ( 'baz' )-> isPromoted ()); ? ...
https://man.plustar.jp/php/reflectionproperty.ispromoted.html - [similar]
リファレンスのユニークなIDを取得する 2952
« ReflectionReference::fromArrayElement ReflectionAttribute » PHP Manual ReflectionReference リフ ... ionReference :: fromArrayElement ( $arr , 2 ); var_dump ( $rr1 -> getId () === $rr2 -> getId ()); var_dump ...
https://man.plustar.jp/php/reflectionreference.getid.html - [similar]