検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 54 for location (0.004 sec.)
使用するウェブサービスの場所を設定する 12430
« SoapClient::__setCookie SoapClient::__setSoapHeaders » PHP Manual SoapClient 使用するウェブサー ... ビスの場所を設定する SoapClient::__setLocation (PHP 5 >= 5.0.4, PHP 7, PHP 8) SoapClient::__setLo ... ービスの場所を設定する 説明 public SoapClient::__setLocation ( ? string $location = null ): ? string それ以降の ... L を設定します。 これは、SoapClient を作成する際に location オプションを指定するのと同じことです。 注意 : この ... から取得したエンドポイントを使用します。 パラメータ location 新しいエンドポイント URL。 戻り値 それまでのエンド ...
https://man.plustar.jp/php/soapclient.setlocation.html - [similar]
Get OID of the current cursor location 11407
« cubrid_connect cubrid_disconnect » PHP Manual CUBRID 関数 Get OID of the current cursor location ... cubrid_current_oid — Get OID of the current cursor location 説明 cubrid_current_oid ( resource $req_identifier ... ction is used to get the oid of the current cursor location from the query result. To use cubrid_current_oid() ... r Request identifier. 戻り値 Oid of current cursor location, when process is successful,失敗した場合に false を ... a prepared SQL statement 関連キーワード: cursor , location , cubrid , Get , OID , oid , of , the , query , id ...
https://man.plustar.jp/php/function.cubrid-current-oid.html - [similar]
クエリの次の行を内部バッファに取得する 11095
« oci_fetch_row oci_field_is_null » PHP Manual OCI8 関数 クエリの次の行を内部バッファに取得する ... ], ENT_QUOTES ), E_USER_ERROR ); } $sql = 'SELECT location_id, city FROM locations WHERE location_id < 1200' ... しておく必要があります oci_define_by_name ( $stid , 'LOCATION_ID' , $locid ); oci_define_by_name ( $stid , 'CITY ... に格納されます while ( oci_fetch ( $stid )) { echo "Location id $locid is $city <br>\n" ; } // 表示: // Locatio ... n id 1000 is Roma // Location id 1100 is Venice oci_free_statement ( $stid ); oc ...
https://man.plustar.jp/php/function.oci-fetch.html - [similar]
指定した文字列を URL エンコードする 10294
« curl_error curl_exec » PHP Manual cURL 関数 指定した文字列を URL エンコードする curl_escape (P ... (); // GET パラメータ用の文字列をエスケープします $location = curl_escape ( $ch , 'Hofbräuhaus / München' ); / ... URL を組み立てます $url = "http://example.com/add_location.php?location= { $location } " ; // その結果: http: ... //example.com/add_location.php?location=Hofbr%C3%A4uhaus%20%2F%20M%C3%BCnchen ...
https://man.plustar.jp/php/function.curl-escape.html - [similar]
SOAP リクエストを実行する 9671
« SoapClient::__construct SoapClient::__getCookies » PHP Manual SoapClient SOAP リクエストを実行 ... oapClient::__doRequest ( string $request , string $location , string $action , int $version , bool $oneWay = f ... ができます。 パラメータ request XML SOAP リクエスト location リクエスト先の URL action SOAP アクション version ... on ( 'Add' ); } function __doRequest ( $request , $location , $action , $version , $one_way = 0 ) { ob_start ( ... nse ; } } $x = new LocalSoapClient ( NULL ,array( 'location' => 'test://' , 'uri' => 'http://testuri.org' )); ...
https://man.plustar.jp/php/soapclient.dorequest.html - [similar]
Construct a memory lock. 9597
« Swoole\Lock Swoole\Lock::__destruct » PHP Manual Swoole\Lock Construct a memory lock. Swoole\L ... __construct ( string $type = ? , string $file_lock_location = ? ) Swoole lock is used for data synchronization ... ple theads or processes. パラメータ type file_lock_location 関連キーワード: Construct , memory , Swoole , Lock ... , construct , lock , location , file , type , string ...
https://man.plustar.jp/php/swoole-lock.construct.html - [similar]
タイムゾーンの位置情報を返す 9360
« DateTimeZone::__construct DateTimeZone::getName » PHP Manual DateTimeZone タイムゾーンの位置情 ... 報を返す DateTimeZone::getLocation timezone_location_get (PHP 5 >= 5.3.0, PHP 7, PHP ... 8) DateTimeZone::getLocation -- timezone_location_get — タイムゾーンの位置情報を ... 返す 説明 オブジェクト指向型 public DateTimeZone::getLocation (): array | false 手続き型 timezone_location_get ( ... した場合に false を返します 例 例1 DateTimeZone::getLocation() の例 <?php $tz = new DateTimeZone ( "Europe/Prag ...
https://man.plustar.jp/php/datetimezone.getlocation.html - [similar]
Construct a swoole atomic object. 9122
« Swoole\Atomic::cmpset Swoole\Atomic::get » PHP Manual Swoole\Atomic Construct a swoole atomic ... nchronization. It compares the content of a memory location with a given value and, only if they are the same, ... modifies the content of that memory location to a new given value. パラメータ value The value o ... swoole , Swoole , Construct , Atomic , construct , location , memory , given , they , only ...
https://man.plustar.jp/php/swoole-atomic.construct.html - [similar]
Move the cursor in the result 8648
« cubrid_lock_write cubrid_next_result » PHP Manual CUBRID 関数 Move the cursor in the result cu ... rsor() function is used to move the current cursor location of req_identifier by the value set in the offset a ... the result, CUBRID_CURSOR_CURRENT for the current location of the result, or CUBRID_CURSOR_LAST for the last ... the valid limit, then the cursor moves to the next location after the valid range for the cursor. For example, ... umber of units you want to move the cursor. origin Location where you want to move the cursor from CUBRID_CURS ...
https://man.plustar.jp/php/function.cubrid-move-cursor.html - [similar]
PHP の変数を、クエリで取得するカラムに関連づける 8484
« oci_connect oci_error » PHP Manual OCI8 関数 PHP の変数を、クエリで取得するカラムに関連づける ... ], ENT_QUOTES ), E_USER_ERROR ); } $sql = 'SELECT location_id, city FROM locations WHERE location_id < 1200' ... 義しなければなりません oci_define_by_name ( $stid , 'LOCATION_ID' , $locid ); oci_define_by_name ( $stid , 'CITY ... が格納されます while ( oci_fetch ( $stid )) { echo "Location id $locid is $city <br>\n" ; } // 表示: // Locatio ... n id 1000 is Roma // Location id 1100 is Venice oci_free_statement ( $stid ); oc ...
https://man.plustar.jp/php/function.oci-define-by-name.html - [similar]
PREV 1 2 3 4 5 6 NEXT