検索

phrase: max: clip:
target: order:
Results of 211 - 220 of about 389 for foreach (0.174 sec.)
DOM 実装が、指定した機能を実装しているかどうかを調べる 4044
« DOMImplementation::createDocumentType DOMNamedNodeMap » PHP Manual DOMImplementation DOM 実装が ... nge module' , 'Traversal' => 'Traversal module' ); foreach ( $features as $key => $name ) { if ( DOMImplement ...
https://man.plustar.jp/php/domimplementation.hasfeature.html - [similar]
新しい filesystem イテレータを作成する 4044
« FilesystemIterator FilesystemIterator::current » PHP Manual FilesystemIterator 新しい filesyst ... = new FilesystemIterator ( dirname ( __FILE__ )); foreach ( $it as $fileinfo ) { echo $fileinfo -> getFilena ...
https://man.plustar.jp/php/filesystemiterator.construct.html - [similar]
すべての HTTP リクエストヘッダを取得する 4044
« apache_note apache_response_headers » PHP Manual Apache 関数 すべての HTTP リクエストヘッダを取 ... ) の例 <?php $headers = apache_request_headers (); foreach ( $headers as $header => $value ) { echo " $header ...
https://man.plustar.jp/php/function.apache-request-headers.html - [similar]
配列の最初のキーを得る 4044
« array_key_exists array_key_last » PHP Manual 配列 関数 配列の最初のキーを得る array_key_first ... rst' )) { function array_key_first (array $arr ) { foreach( $arr as $key => $unused ) { return $key ; } retur ...
https://man.plustar.jp/php/function.array-key-first.html - [similar]
文字列のコードを評価し、動的に関数を作成する 4044
« call_user_func forward_static_call_array » PHP Manual 関数処理 関数 文字列のコードを評価し、動 ... <?php function process ( $var1 , $var2 , $farr ) { foreach ( $farr as $f ) { echo $f ( $var1 , $var2 ) . "\n" ... <?php function process ( $var1 , $var2 , $farr ) { foreach ( $farr as $f ) { echo $f ( $var1 , $var2 ) . "\n" ...
https://man.plustar.jp/php/function.create-function.html - [similar]
英数字かどうかを調べる 4044
« Ctype 関数 ctype_alpha » PHP Manual Ctype 関数 英数字かどうかを調べる ctype_alnum (PHP 4 >= 4. ... php $strings = array( 'AbCd1zyZ9' , 'foo!#$bar' ); foreach ( $strings as $testcase ) { if ( ctype_alnum ( $te ...
https://man.plustar.jp/php/function.ctype-alnum.html - [similar]
制御文字かどうかを調べる 4044
« ctype_alpha ctype_digit » PHP Manual Ctype 関数 制御文字かどうかを調べる ctype_cntrl (PHP 4 >= ... y( 'string1' => "\n\r\t" , 'string2' => 'arf12' ); foreach ( $strings as $name => $testcase ) { if ( ctype_cn ...
https://man.plustar.jp/php/function.ctype-cntrl.html - [similar]
小文字かどうかを調べる 4044
« ctype_graph ctype_print » PHP Manual Ctype 関数 小文字かどうかを調べる ctype_lower (PHP 4 >= 4 ... rings = array( 'aac123' , 'qiutoas' , 'QASsdks' ); foreach ( $strings as $testcase ) { if ( ctype_lower ( $te ...
https://man.plustar.jp/php/function.ctype-lower.html - [similar]
大文字かどうか調べる 4044
« ctype_space ctype_xdigit » PHP Manual Ctype 関数 大文字かどうか調べる ctype_upper (PHP 4 >= 4. ... ngs = array( 'AKLWC139' , 'LMNSDO' , 'akwSKWsm' ); foreach ( $strings as $testcase ) { if ( ctype_upper ( $te ...
https://man.plustar.jp/php/function.ctype-upper.html - [similar]
16 進数を表す文字かどうかを調べる 4044
« ctype_upper Filter » PHP Manual Ctype 関数 16 進数を表す文字かどうかを調べる ctype_xdigit (PHP ... ngs = array( 'AB10BC99' , 'AR1012' , 'ab12bc99' ); foreach ( $strings as $testcase ) { if ( ctype_xdigit ( $t ...
https://man.plustar.jp/php/function.ctype-xdigit.html - [similar]