検索

phrase: max: clip:
target: order:
Results of 231 - 240 of about 389 for foreach (0.149 sec.)
変数が整数型かどうかを検査する 4044
« is_float is_integer » PHP Manual 変数操作 関数 変数が整数型かどうかを検査する is_int (PHP 4, P ... 23 , "23" , 23.5 , "23.5" , null , true , false ); foreach ( $values as $value ) { echo "is_int(" ; var_expor ...
https://man.plustar.jp/php/function.is-int.html - [similar]
変数の型が文字列かどうかを調べる 4044
« is_scalar isset » PHP Manual 変数操作 関数 変数の型が文字列かどうかを調べる is_string (PHP 4, ... '23' , 23 , '23.5' , 23.5 , '' , ' ' , '0' , 0 ); foreach ( $values as $value ) { echo "is_string(" ; var_ex ...
https://man.plustar.jp/php/function.is-string.html - [similar]
配列からキーを取り出す 4044
« key_exists krsort » PHP Manual 配列 関数 配列からキーを取り出す key (PHP 4, PHP 5, PHP 7, PHP ... を進める array_key_first() - 配列の最初のキーを得る foreach 関連キーワード: 配列 , キー , key , array , ポイン ...
https://man.plustar.jp/php/function.key.html - [similar]
エラー配列を取得する 4044
« libxml_disable_entity_loader libxml_get_last_error » PHP Manual libxml 関数 エラー配列を取得す ... $doc === false ) { $errors = libxml_get_errors (); foreach ( $errors as $error ) { echo display_xml_error ( $ ...
https://man.plustar.jp/php/function.libxml-get-errors.html - [similar]
libxmlエラーを無効にし、ユーザーが必要に応じてエラー情報を取得できるようにする 4044
« libxml_set_streams_context SimpleXML » PHP Manual libxml 関数 libxmlエラーを無効にし、ユーザー ... DOMDocument ; if (! $doc -> load ( 'file.xml' )) { foreach ( libxml_get_errors () as $error ) { // ここでエラ ...
https://man.plustar.jp/php/function.libxml-use-internal-errors.html - [similar]
Unicode のコードポイントに対応する文字を返す 4044
« mb_check_encoding mb_convert_case » PHP Manual マルチバイト文字列 関数 Unicode のコードポイント ... の例 <?php $values = [ 65 , 63 , 0x20AC , 128024 ]; foreach ( $values as $value ) { var_dump ( mb_chr ( $value ...
https://man.plustar.jp/php/function.mb-chr.html - [similar]
すべての SNMP オブジェクトをエージェントから取得する 4044
« snmp2_set snmp3_get » PHP Manual SNMP 関数 すべての SNMP オブジェクトをエージェントから取得する ... p $a = snmp2_walk ( "127.0.0.1" , "public" , "" ); foreach ( $a as $val ) { echo " $val \n" ; } ?> この例は、 ...
https://man.plustar.jp/php/function.snmp2-walk.html - [similar]
エージェントから全ての SNMP オブジェクトを取得する 4044
« snmpset snmpwalkoid » PHP Manual SNMP 関数 エージェントから全ての SNMP オブジェクトを取得する ... php $a = snmpwalk ( "127.0.0.1" , "public" , "" ); foreach ( $a as $val ) { echo " $val \n" ; } ?> 上記の関数 ...
https://man.plustar.jp/php/function.snmpwalk.html - [similar]
Returns error and warning information about the last SQLSRV operation performed 4044
« sqlsrv_connect sqlsrv_execute » PHP Manual SQLSRV 関数 Returns error and warning information a ... ) { if( ( $errors = sqlsrv_errors () ) != null ) { foreach( $errors as $error ) { echo "SQLSTATE: " . $error ...
https://man.plustar.jp/php/function.sqlsrv-errors.html - [similar]
Executes a statement prepared with sqlsrv_prepare 4044
« sqlsrv_errors sqlsrv_fetch_array » PHP Manual SQLSRV 関数 Executes a statement prepared with s ... 10 , 2 => 20 , 3 => 30 ); // Execute the statement for each order. foreach( $orders as $id => $qty ) { // Bec ...
https://man.plustar.jp/php/function.sqlsrv-execute.html - [similar]