検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 1896 for Get (0.011 sec.)
PHP の値に関する xmlrpc 型を取得する 3668
« xmlrpc_encode xmlrpc_is_fault » PHP Manual XML-RPC 関数 PHP の値に関する xmlrpc 型を取得する x ... mlrpc_get_type (PHP 4 >= 4.1.0, PHP 5, PHP 7) xmlrpc_get_typ ... — PHP の値に関する xmlrpc 型を取得する 説明 xmlrpc_get_type ( mixed $value ): string 警告 この関数は、 実 ... 返します。 例 例1 XML-RPC の型の例 <?php echo xmlrpc_get_type ( null ) . "\n" ; // base64 echo xmlrpc_get_t ... ype ( false ) . "\n" ; // boolean echo xmlrpc_get_type ( 1 ) . "\n" ; // int echo xmlrpc_get_type ( ...
https://man.plustar.jp/php/function.xmlrpc-get-type.html - [similar]
クラスのデフォルトプロパティを取得する 3639
« get_class_methods get_class » PHP Manual クラス/オブジェクト関数 クラスのデフォルトプロパティを ... 取得する get_class_vars (PHP 4, PHP 5, PHP 7, PHP 8) get_class_ ... vars — クラスのデフォルトプロパティを取得する 説明 get_class_vars ( string $class ): array 指定したクラス ... 。 エラーが発生した場合は false を返します。 例 例1 get_class_vars() の例 <?php class myclass { var $var1 ... ue ; } } $my_class = new myclass (); $class_vars = get_class_vars ( get_class ( $my_class )); foreach ( $ ...
https://man.plustar.jp/php/function.get-class-vars.html - [similar]
MySQL クライアント情報を取得する 3639
« mysql_free_result mysql_get_host_info » PHP Manual MySQL 関数 MySQL クライアント情報を取得する ... mysql_get_client_info (PHP 4 >= 4.0.5, PHP 5) mysql_get_clie ... い。 この関数の代替として、これらが使えます。 mysqli_get_client_info() PDO::getAttribute(PDO::ATTR_CLIENT_V ... ERSION) 説明 mysql_get_client_info (): string mysql_get_client_info() は、 ... クライアントのバージョンを返します。 例 例1 mysql_get_client_info() の例 <?php printf ( "MySQL client in ...
https://man.plustar.jp/php/function.mysql-get-client-info.html - [similar]
非同期クエリの結果を取得する 3620
« pg_get_pid pg_host » PHP Manual PostgreSQL 関数 非同期クエリの結果を取得する pg_get_result (PH ... P 4 >= 4.2.0, PHP 5, PHP 7, PHP 8) pg_get_result — 非同期クエリの結果を取得する 説明 pg_get_ ... \Connection $connection ): PgSql\Result | false pg_get_result() は、 pg_send_query() , pg_send_query_para ... 可能です。クエリの結果を ひとつずつ取得するには、 pg_get_result() を使用します。 パラメータ connection PgSq ... ジョンでは、 リソース を期待していました。 例 例1 pg_get_result() の例 <?php $dbconn = pg_connect ( "dbname ...
https://man.plustar.jp/php/function.pg-get-result.html - [similar]
あるモジュールの関数名を配列として返す 3576
« get_defined_constants get_include_path » PHP Manual PHP オプション/情報 関数 あるモジュールの関 ... 数名を配列として返す get_extension_funcs (PHP 4, PHP 5, PHP 7, PHP 8) get_e ... uncs — あるモジュールの関数名を配列として返す 説明 get_extension_funcs ( string $extension ): array | fal ... を返します。 例 例1 XML 関数の出力 <?php print_r ( get_extension_funcs ( "xml" )); ?> 上の例の出力は、 た ... ml_parse [13] => xml_parse_into_struct [14] => xml_get_error_code [15] => xml_error_string [16] => xml_ge ...
https://man.plustar.jp/php/function.get-extension-funcs.html - [similar]
openssl_pkey_get_public のエイリアス 3576
« openssl_get_privatekey openssl_open » PHP Manual OpenSSL 関数 openssl_pkey_get_public のエイリ ... アス openssl_get_publickey (PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8) op ... enssl_get_publickey — openssl_pkey_get_public() のエイリアス ... この関数は次の関数のエイリアスです。 openssl_pkey_get_public() . 関連キーワード: pkey , public , 関数 , ...
https://man.plustar.jp/php/function.openssl-get-publickey.html - [similar]
Seaslog 関数 3576
« 例 seaslog_get_author » PHP Manual Seaslog Seaslog 関数 Seaslog 関数 目次 seaslog_get_author — ... Get SeasLog author. seaslog_get_version — Get SeasLog ... 関連キーワード: Seaslog , 関数 , seaslog , author , Get , SeasLog , version , ...
https://man.plustar.jp/php/ref.seaslog.html - [similar]
Get the CUBRID PHP module's version 3562
« cubrid_set_query_timeout CUBRID MySQL 互換関数 » PHP Manual CUBRID 関数 Get the CUBRID PHP mod ... id_version (PECL CUBRID >= 8.3.0) cubrid_version — Get the CUBRID PHP module's version 説明 cubrid_versio ... ): string The cubrid_version() function is used to get the CUBRID PHP module's version. パラメータ この関 ... ')' . cubrid_error_msg ()); } $db_params = cubrid_get_db_parameter ( $conn ); while (list( $param_name , ... _value ); } printf ( "\n" ); $server_info = cubrid_get_server_info ( $conn ); $client_info = cubrid_get_c ...
https://man.plustar.jp/php/function.cubrid-version.html - [similar]
クラスメソッドの名前を取得する 3562
« get_called_class get_class_vars » PHP Manual クラス/オブジェクト関数 クラスメソッドの名前を取得 ... する get_class_methods (PHP 4, PHP 5, PHP 7, PHP 8) get_cla ... ss_methods — クラスメソッドの名前を取得する 説明 get_class_methods ( object | string $object_or_class ) ... 有効なクラス名を受け入れるようになりました。 例 例1 get_class_methods() の例 <?php class myclass { // コン ... myfunc2 () { return( true ); } } $class_methods = get_class_methods ( 'myclass' ); // あるいは $class_me ...
https://man.plustar.jp/php/function.get-class-methods.html - [similar]
Gets value of class or instance property 3562
« uopz_get_mock uopz_get_return » PHP Manual Uopz 関数 Gets value of class or instance property ... uopz_get_property (PECL uopz 5, PECL uopz 6, PECL uopz 7) u ... opz_get_property — Gets value of class or instance propert ... y 説明 uopz_get_property ( string $class , string $property ): mix ... ed uopz_get_property ( object $instance , string $property ): ...
https://man.plustar.jp/php/function.uopz-get-property.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT