検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 234 for input (0.029 sec.)
配列から一つ以上のキーをランダムに取得する 5171
« array_push array_reduce » PHP Manual 配列 関数 配列から一つ以上のキーをランダムに取得する arra ... 例 <?php srand ((float) microtime () * 10000000 ); $input = array( "ネオ" , "モーフィアス" , "トリニティ" , ... サイファー" , "タンク" ); $rand_keys = array_rand ( $input , 2 ); echo $input [ $rand_keys [ 0 ]] . "\n" ; ec ... ho $input [ $rand_keys [ 1 ]] . "\n" ; ?> 注意 注意 : srand( ...
https://man.plustar.jp/php/function.array-rand.html - [similar]
バッファを修正するための ob_start コールバック関数 5171
« Tidy 関数 tidy_access_count » PHP Manual Tidy 関数 バッファを修正するための ob_start コールバッ ... art コールバック関数 説明 ob_tidyhandler ( string $input , int $mode = ? ): string バッファを修正するための ... ob_start() コールバック関数です。 パラメータ input バッファ。 mode バッファのモード。 戻り値 修正した ... ド: バッファ , 関数 , 修正 , tidyhandler , string , input , mode , 出力 , count , int ...
https://man.plustar.jp/php/function.ob-tidyhandler.html - [similar]
データのフィルタリング 5140
« ctype_xdigit はじめに » PHP Manual 変数・データ型関連 データのフィルタリング データのフィルタリ ... r_id — フィルタの名前からフィルタ ID を返す filter_input_array — 外部から変数を受け取り、オプションでそれら ... をフィルタリングする filter_input — 指定した名前の変数を外部から受け取り、オプション ... 変数 , var , インストール , 設定 , 外部 , array , input ...
https://man.plustar.jp/php/book.filter.html - [similar]
The EventBufferEvent class 5079
« EventBuffer::write EventBufferEvent::close » PHP Manual Event The EventBufferEvent class The E ... lic int $ priority ; public readonly EventBuffer $ input ; public readonly EventBuffer $ output ; /* メソッ ... ing (): string public getEnabled (): int public getInput (): EventBuffer public getOutput (): EventBuffer p ... of the events used to implement the buffer event. input Underlying input buffer object( EventBuffer ) outp ... y enabled on the buffer event EventBufferEvent::getInput — Returns underlying input buffer associated with ...
https://man.plustar.jp/php/class.eventbufferevent.html - [similar]
配列から重複した値を削除する 5079
« array_uintersect array_unshift » PHP Manual 配列 関数 配列から重複した値を削除する array_uniqu ... 除されていました。 例 例1 array_unique() の例 <?php $input = array( "a" => "green" , "red" , "b" => "green" , ... "blue" , "red" ); $result = array_unique ( $input ); print_r ( $result ); ?> 上の例の出力は以下となり ... > red [1] => blue ) 例2 array_unique() と型 <?php $input = array( 4 , "4" , "3" , 4 , 3 , "3" ); $result = ... array_unique ( $input ); var_dump ( $result ); ?> 上の例の出力は以下とな ...
https://man.plustar.jp/php/function.array-unique.html - [similar]
実行時設定 5079
« インストール手順 リソース型 » PHP Manual インストール/設定 実行時設定 実行時設定 php.ini の設定 ... るでしょう。 max_execution_time "30" PHP_INI_ALL max_input_time "-1" PHP_INI_PERDIR max_input_nesting_level " ... 64" PHP_INI_PERDIR PHP 5.2.3 以降で有効。 max_input_vars 1000 PHP_INI_PERDIR PHP 5.3.9 以降で有効 magi ... ては、Web サーバーのドキュメントを参照ください。 max_input_time int スクリプトが POST、GET などの入力を パース ... ます。 無制限にするには、 0 を設定してください。 max_input_nesting_level int 外部からの入力変数 ( $_GET や $_ ...
https://man.plustar.jp/php/info.configuration.html - [similar]
The Parle\ErrorInfo class 5017
« Parle\Token Parle\LexerException » PHP Manual Parle The Parle\ErrorInfo class The Parle\ErrorI ... } プロパティ id Error id. position Position in the input, where the error occurred. token If applicable - t ... en , token , int , applicable , occurred , where , input ...
https://man.plustar.jp/php/class.parle-errorinfo.html - [similar]
ファイルに署名する 5017
« openssl_cms_read openssl_cms_verify » PHP Manual OpenSSL 関数 ファイルに署名する openssl_cms_s ... ファイルに署名する 説明 openssl_cms_sign ( string $input_filename , string $output_filename , OpenSSLCertif ... と秘密鍵を使ってファイルに署名します。 パラメータ input_filename 署名するファイル名。 output_filename 処理 ... openssl_cms_sign() の例 <?php openssl_cms_sign ( 'input.txt' , 'output.txt' , 'file://cert.pem' , 'file:// ...
https://man.plustar.jp/php/function.openssl-cms-sign.html - [similar]
Create a fuzzy hash from a string 5017
« ssdeep_fuzzy_hash_filename 文字列 » PHP Manual ssdeep 関数 Create a fuzzy hash from a string s ... ng , and returns that hash. パラメータ to_hash The input string. 戻り値 Returns a string on success, false ... , Create , from , ssdeep , a , returns , Returns , input , パラメータ ...
https://man.plustar.jp/php/function.ssdeep-fuzzy-hash.html - [similar]
ジェネレータの構文 4987
« ジェネレータとは ジェネレータと Iterator オブジェクトとの比較 » PHP Manual ジェネレータ ジェネ ... フィールドが ID となり、これをキーとして使います */ $input = <<<'EOF' 1;PHP;$が大好き 2;Python;インデントが大 ... 好き 3;Ruby;ブロックが大好き EOF; function input_parser ( $input ) { foreach ( explode ( "\n" , $in ... ( $fields ); yield $id => $fields ; } } foreach ( input_parser ( $input ) as $id => $fields ) { echo " $id ...
https://man.plustar.jp/php/language.generators.syntax.html - [similar]