検索

phrase: max: clip:
target: order:
Results of 481 - 490 of about 1938 for IF (0.047 sec.)
最後に見つかったエラーを返す 2495
« oci_define_by_name oci_execute » PHP Manual OCI8 関数 最後に見つかったエラーを返す oci_error ( ... oci_connect ( "hr" , "welcome" , "localhost/XE" ); if (! $conn ) { $e = oci_error (); // oci_connect のエ ... from dual" ); // クォートが間違っていることに注意 if (! $stid ) { $e = oci_error ( $conn ); // oci_pars ... ot_exist from dual" ); $r = oci_execute ( $stid ); if (! $r ) { $e = oci_error ( $stid ); // oci_execute ...
https://man.plustar.jp/php/function.oci-error.html - [similar]
Extracts the data from a tagged attribute 2495
« radius_get_attr radius_get_tagged_attr_tag » PHP Manual Radius 関数 Extracts the data from a t ... _tagged_attr_data ( string $data ): string | false If a tagged attribute has been returned from radius_g ... <?php while ( $resa = radius_get_attr ( $res )) { if (! is_array ( $resa )) { printf ( "Error getting a ...
https://man.plustar.jp/php/function.radius-get-tagged-attr-data.html - [similar]
Extracts the tag from a tagged attribute 2495
« radius_get_tagged_attr_data radius_get_vendor_attr » PHP Manual Radius 関数 Extracts the tag f ... _get_tagged_attr_tag ( string $data ): int | false If a tagged attribute has been returned from radius_g ... <?php while ( $resa = radius_get_attr ( $res )) { if (! is_array ( $resa )) { printf ( "Error getting a ...
https://man.plustar.jp/php/function.radius-get-tagged-attr-tag.html - [similar]
ディレクトリハンドルからエントリを読み込む 2495
« opendir rewinddir » PHP Manual ディレクトリ 関数 ディレクトリハンドルからエントリを読み込む re ... あった場合にループが とまってしまうからです。 <?php if ( $handle = opendir ( '/path/to/files' )) { echo " ... トリを一覧する。ただし . および .. は取り除く <?php if ( $handle = opendir ( '.' )) { while ( false !== ( ... $entry = readdir ( $handle ))) { if ( $entry != "." && $entry != ".." ) { echo " $entr ...
https://man.plustar.jp/php/function.readdir.html - [similar]
Returns information about the client and specified connection 2495
« sqlsrv_cancel sqlsrv_close » PHP Manual SQLSRV 関数 Returns information about the client and s ... pecified connection sqlsrv_client_info (No version infor ... nfo — Returns information about the client and specified connection 説明 sqlsrv_client_info ( resource $ ... array Returns information about the client and specified connection パラメータ conn The connection about ... n = sqlsrv_connect ( $serverName , $connOptions ); if( $conn === false ) { die( print_r ( sqlsrv_errors ...
https://man.plustar.jp/php/function.sqlsrv-client-info.html - [similar]
Sets value of existing class or instance property 2495
« uopz_set_mock uopz_set_return » PHP Manual Uopz 関数 Sets value of existing class or instance ... ts the value of an existing static class property, if class is given, or the value of an instance proper ... ess whether the instance property already exists), if instance is given. パラメータ class The name of th ...
https://man.plustar.jp/php/function.uopz-set-property.html - [similar]
Description 2495
« ImagickKernel::fromMatrix ImagickKernel::scale » PHP Manual ImagickKernel Description ImagickK ... either float for elements that are used or 'false' if the element should be skipped. パラメータ この関数 ... ll ) { $output .= "<td style='text-align:left'>" ; if ( $cell === false ) { $output .= "false" ; } else ...
https://man.plustar.jp/php/imagickkernel.getmatrix.html - [similar]
変数のスコープ 2495
« 定義済みの変数 可変変数 » PHP Manual 変数 変数のスコープ 変数のスコープ 変数のスコープは、その ... () { static $count = 0 ; $count ++; echo $count ; if ( $count < 10 ) { test (); } $count --; } ?> stati ... $obj ; echo 'Static object: ' ; var_dump ( $obj ); if (!isset( $obj )) { $new = new stdclass ; // Assign ... reference to the static variable $obj = & $new ; } if (!isset( $obj -> property )) { $obj -> property = ... $obj ; echo 'Static object: ' ; var_dump ( $obj ); if (!isset( $obj )) { $new = new stdclass ; // Assign ...
https://man.plustar.jp/php/language.variables.scope.html - [similar]
結果セットのフィールド情報をオブジェクトの配列で返す 2495
« mysqli_result::fetch_field mysqli_result::fetch_object » PHP Manual mysqli_result 結果セットの ... ofoo" , "sakila" ); /* 接続状況をチェックします */ if ( $mysqli -> connect_errno ) { printf ( "Connect f ... : $charset \n" ; echo "======================\n" ; if ( $result = $mysqli -> query ( $query )) { /* すべ ... word" , "sakila" ); /* 接続状況をチェックします */ if ( mysqli_connect_errno ()) { printf ( "Connect fai ... : $charset \n" ; echo "======================\n" ; if ( $result = mysqli_query ( $link , $query )) { /* ...
https://man.plustar.jp/php/mysqli-result.fetch-fields.html - [similar]
データベース上でひとつ以上のクエリを実行する 2495
« mysqli::more_results mysqli::next_result » PHP Manual mysqli データベース上でひとつ以上のクエリ ... query ); do { /* PHP 側に結果セットを保存します */ if ( $result = $mysqli -> store_result ()) { while ( ... s\n" , $row [ 0 ]); } } /* 区切り線を出力します */ if ( $mysqli -> more_results ()) { printf ( "-------- ... query ); do { /* PHP 側に結果セットを保存します */ if ( $result = mysqli_store_result ( $link )) { while ... s\n" , $row [ 0 ]); } } /* 区切り線を出力します */ if ( mysqli_more_results ( $link )) { printf ( "----- ...
https://man.plustar.jp/php/mysqli.multi-query.html - [similar]