検索

phrase: max: clip:
target: order:
Results of 291 - 300 of about 1568 for Name (0.043 sec.)
1 つ以上の文字列を出力する 2899
« crypt explode » PHP Manual String 関数 1 つ以上の文字列を出力する echo (PHP 4, PHP 5, PHP 7, P ... 同じでした: <?php // 以下の例では、'Hello ' . isset($name) という式が先に評価されます。 // そして、常にこれは ... true と評価されるので、echo への引数は常に $name になります。 echo 'Hello ' . isset( $name ) ? $nam ... うに追加の括弧が必要です。 echo 'Hello ' . (isset( $name ) ? $name : 'John Doe' ) . '!' ; // PHP 8.0.0 より ... は別のものだからです: <?php echo "Hello " , isset( $name ) ? $name : "John Doe" , "!" ; echo "Sum: " , 1 + ...
https://man.plustar.jp/php/function.echo.html - [similar]
引数が、現在のスコープから関数としてコール可能な値かどうかを調べる 2899
« is_bool is_countable » PHP Manual 変数操作 関数 引数が、現在のスコープから関数としてコール可能 ... ue , bool $syntax_only = false , string &$callable_name = null ): bool 引数の内容が、 callable かどうかを調 ... 字列である 2 つのエントリからなるものです。 callable_name "呼び出し名" を受け取ります。下の例では "someClass ... s_callable ( $functionVariable , false , $callable_name )); // bool(true) echo $callable_name , "\n" ; // ... ( is_callable ( $methodVariable , true , $callable_name )); // bool(true) echo $callable_name , "\n" ; // ...
https://man.plustar.jp/php/function.is-callable.html - [similar]
フィールドの名前を返す 2899
« pg_field_is_null pg_field_num » PHP Manual PostgreSQL 関数 フィールドの名前を返す pg_field_name ... e (PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8) pg_field_name — フィールドの名前を返す 説明 pg_field_name ( PgSq ... l\Result $result , int $field ): string pg_field_name() は、 指定した result インスタンスの指定した fiel ... から始まります。 注意 : この関数は、以前は pg_fieldname() と呼ばれていました。 パラメータ result pg_query( ... ールド情報を取得する <?php $dbconn = pg_connect ( "dbname=publisher" ) or die( "Could not connect" ); $res = ...
https://man.plustar.jp/php/function.pg-field-name.html - [similar]
Create a fuzzy hash from a file 2899
« ssdeep_fuzzy_compare ssdeep_fuzzy_hash » PHP Manual ssdeep 関数 Create a fuzzy hash from a fil ... e ssdeep_fuzzy_hash_filename (PECL ssdeep >= 1.0.0) ssdeep_fuzzy_hash_filename ... fuzzy hash from a file 説明 ssdeep_fuzzy_hash_filename ( string $file_name ): string ssdeep_fuzzy_hash_fi ... lename() calculates the hash of the file specified by fil ... e_name using » context-triggered piecewise hashing , and ...
https://man.plustar.jp/php/function.ssdeep-fuzzy-hash-filename.html - [similar]
指定したソースを PHP トークンに分割する 2899
« Tokenizer 関数 token_name » PHP Manual Tokenizer 関数 指定したソースを PHP トークンに分割する ... パーサトークンの一覧 を参照するか、 あるいは token_name() でトークン値を文字列表現に 変換します。 パラメー ... $token )) { echo "Line { $token [ 2 ]} : " , token_name ( $token [ 0 ]), " (' { $token [ 1 ]} ')" , PHP_EO ... $token )) { echo "Line { $token [ 2 ]} : " , token_name ( $token [ 0 ]), " (' { $token [ 1 ]} ')" , PHP_EO ... $token ) { if ( is_array ( $token )) { echo token_name ( $token [ 0 ]) , PHP_EOL ; } } ?> 上の例の出力は、 ...
https://man.plustar.jp/php/function.token-get-all.html - [similar]
delete のクエリパラメータをバインドする 2899
« mysql_xdevapi\TableDelete TableDelete::__construct » PHP Manual mysql_xdevapi\TableDelete dele ... te (); $session -> sql ( "CREATE TABLE addressbook.names(name text, age int)" )-> execute (); $session -> ... sql ( "INSERT INTO addressbook.names values ('John', 42), ('Sam', 33)" )-> execute (); ... ( "addressbook" ); $table = $schema -> getTable ( "names" ); $table -> delete () -> where ( "name = :name" ... ) -> bind ([ 'name' => 'John' ]) -> orderby ( "age DESC" ) -> limit ( ...
https://man.plustar.jp/php/mysql-xdevapi-tabledelete.bind.html - [similar]
結果セットの次の行を連想配列で取得する 2899
« mysqli_result::fetch_array mysqli_result::fetch_column » PHP Manual mysqli_result 結果セットの ... ser" , "my_password" , "world" ); $query = "SELECT Name, CountryCode FROM City ORDER BY ID DESC" ; $result ... > fetch_assoc ()) { printf ( "%s (%s)\n" , $row [ "Name" ], $row [ "CountryCode" ]); } 手続き型 <?php mysq ... ser" , "my_password" , "world" ); $query = "SELECT Name, CountryCode FROM City ORDER BY ID DESC" ; $result ... ssoc ( $result )) { printf ( "%s (%s)\n" , $row [ "Name" ], $row [ "CountryCode" ]); } 上の例の出力は、 た ...
https://man.plustar.jp/php/mysqli-result.fetch-assoc.html - [similar]
パラメータ値を返す 2899
« SolrParams::get SolrParams::getParams » PHP Manual SolrParams パラメータ値を返す SolrParams::g ... final public SolrParams::getParam ( string $param_name = ? ): mixed param_name という名前のパラメータを返 ... します。 パラメータ param_name パラメータ名 戻り値 パラメータの種類により、文字列 ...
https://man.plustar.jp/php/solrparams.getparam.html - [similar]
SoapHeader クラス 2878
« SoapFault::__toString SoapHeader::__construct » PHP Manual SOAP SoapHeader クラス SoapHeader ク ... lass SoapHeader { /* プロパティ */ public string $ namespace ; public string $ name ; public mixed $ data ... ull $ actor ; /* メソッド */ __construct ( string $namespace , string $name , mixed $data = ? , bool $must ... actor = ? ) } プロパティ actor data mustUnderstand name namespace 目次 SoapHeader::__construct — SoapHeade ... oapHeader , クラス , string , public , construct , namespace , data , actor , mustUnderstand , SoapFault ...
https://man.plustar.jp/php/class.soapheader.html - [similar]
Instantiates an FFI object with C declarations parsed during preloading 2878
« FFI::new FFI::sizeof » PHP Manual FFI Instantiates an FFI object with C declarations parsed du ... preloading 説明 public static FFI::scope ( string $name ): FFI Instantiates an FFI object with C declarati ... e scope may be loaded at the same time. パラメータ name The scope name defined by a special FFI_SCOPE defi ...
https://man.plustar.jp/php/ffi.scope.html - [similar]