Results of 1 - 8 of about 8 for Animal (0.002 sec.)
- 共変性と反変性 13754
- « オブジェクトのシリアライズ 変更履歴 » PHP Manual クラスとオブジェクト 共変性と反変性 共変性と反
...
動作するかを示すために、 単純な抽象クラスの親である Animal を作ることにします。 このクラスは子クラス Cat と D ...
og に継承されています。 <?php abstract class Animal { protected string $name ; public function __const ...
ract public function speak (); } class Dog extends Animal { public function speak () { echo $this -> name . ...
" barks" ; } } class Cat extends Animal { public function speak () { echo $this -> name . ...
-
https://man.plustar.jp/php/language.oop5.variance.html
- [similar]
- SQL 文を直接実行する 8983
- « db2_escape_string db2_execute » PHP Manual IBM DB2 関数 SQL 文を直接実行する db2_exec (PECL ib
...
テストテーブルを作成します $create = 'CREATE TABLE animals (id INTEGER, breed VARCHAR(32), name CHAR(16), we ...
しました。\n" ; } // テストテーブルに値を投入します $animals = array( array( 0 , 'cat' , 'Pook' , 3.2 ), array ...
ray( 6 , 'llama' , 'Sweater' , 150 ) ); foreach ( $animals as $animal ) { $rc = db2_exec ( $conn , "INSERT I ...
NTO animals (id, breed, name, weight) VALUES ( { $animal [ 0 ...
-
https://man.plustar.jp/php/function.db2-exec.html
- [similar]
- 結果セットポインタを次の行あるいは要求された行に設定する 8513
- « db2_fetch_object db2_field_display_size » PHP Manual IBM DB2 関数 結果セットポインタを次の行あ
...
法を示します。 <?php $sql = 'SELECT name, breed FROM animals WHERE weight < ?' ; $stmt = db2_prepare ( $conn , ...
上の例の出力は以下となります。 db2_fetch_both MATCH_ANIMAL 2006-08-25-17.10.23.775000 2006-08-25-17.10.23.775 ...
0 2006-10-17-10.11.05.308000 db2_fetch_array MATCH_ANIMAL 2006-08-25-17.10.23.775000 db2_fetch_array MULTIRE ...
2006-10-17-10.11.05.308000 db2_fetch_object MATCH_ANIMAL 2006-08-25-17.10.23.775000 db2_fetch_object MULTIR ...
-
https://man.plustar.jp/php/function.db2-fetch-row.html
- [similar]
- PHP 変数を SQL 文のパラメータにバインドする 8314
- « db2_autocommit db2_client_info » PHP Manual IBM DB2 関数 PHP 変数を SQL 文のパラメータにバイン
...
ます。 <?php $sql = 'SELECT name, breed, weight FROM animals WHERE weight > ? AND weight < ?' ; $conn = db2_co ...
ージャのコール 以下の例のストアドプロシージャ match_animal は、 3 つのさまざまなパラメータを受け取ります。 最 ...
順に並べたものとなります。 <?php $sql = 'CALL match_animal(?, ?, ?)' ; $conn = db2_connect ( $database , $use ...
。 <?php $stmt = db2_prepare ( $conn , "INSERT INTO animal_pictures(picture) VALUES (?)" ); $picture = "/opt/ ...
-
https://man.plustar.jp/php/function.db2-bind-param.html
- [similar]
- ファイルから行を取り出し CSV フィールドとして処理する 8241
- « SplFileObject::fgetc SplFileObject::fgets » PHP Manual SplFileObject ファイルから行を取り出し
...
::READ_CSV の例 <?php $file = new SplFileObject ( "animals.csv" ); $file -> setFlags ( SplFileObject :: READ ...
_CSV ); foreach ( $file as $row ) { list( $animal , $class , $legs ) = $row ; printf ( "A %s is a %s ...
with %d legs\n" , $animal , $class , $legs ); } ?> animals.csv の内容 crocod ...
-
https://man.plustar.jp/php/splfileobject.fgetcsv.html
- [similar]
- 実行する SQL 文を準備する 8187
- « db2_pconnect db2_primary_keys » PHP Manual IBM DB2 関数 実行する SQL 文を準備する db2_prepare
...
に処理しながら db2_execute() に値を渡します。 <?php $animals = array( array( 0 , 'cat' , 'Pook' , 3.2 ), array ...
e' , 'Smarty' , 350.0 ), ); $insert = 'INSERT INTO animals (id, breed, name, weight) VALUES (?, ?, ?, ?)' ; ...
are ( $conn , $insert ); if ( $stmt ) { foreach ( $animals as $animal ) { $result = db2_execute ( $stmt , $a ...
-
https://man.plustar.jp/php/function.db2-prepare.html
- [similar]
- 設定ファイルをパースする 8187
- « move_uploaded_file parse_ini_string » PHP Manual ファイルシステム 関数 設定ファイルをパースする
...
行はコメントです。 [first_section] one = 1 five = 5 animal = BIRD [second_section] path = "/usr/local/bin" UR ...
下のようになります。 Array ( [one] => 1 [five] => 5 [animal] => Dodo bird [path] => /usr/local/bin [URL] => ht ...
[first_section] => Array ( [one] => 1 [five] => 5 [animal] => Dodo bird ) [second_section] => Array ( [path] ...
-
https://man.plustar.jp/php/function.parse-ini-file.html
- [similar]
- 新しいセッションを開始、あるいは既存のセッションを再開する 8043
- « session_set_save_handler session_status » PHP Manual セッション関数 新しいセッションを開始、あ
...
$_SESSION [ 'favcolor' ] = 'green' ; $_SESSION [ 'animal' ] = 'cat' ; $_SESSION [ 'time' ] = time (); // セ ...
SESSION [ 'favcolor' ]; // green echo $_SESSION [ 'animal' ]; // cat echo date ( 'Y m d H:i:s' , $_SESSION [ ...
-
https://man.plustar.jp/php/function.session-start.html
- [similar]
PREV
1
NEXT