Results of 1 - 10 of about 45 for Fruit (0.083 sec.)
- PHP の変数を、クエリで取得するカラムに関連づける 12081
- « oci_connect oci_error » PHP Manual OCI8 関数 PHP の変数を、クエリで取得するカラムに関連づける
...
にテーブルを作ります CREATE TABLE mytab (id NUMBER, fruit CLOB); INSERT INTO mytab (id, fruit) values (1, 'a ...
pple'); INSERT INTO mytab (id, fruit) values (2, 'orange'); COMMIT; */ $conn = oci_conn ...
stid , 'ID' , $id ); oci_define_by_name ( $stid , 'FRUIT' , $fruit ); // $fruit will become a LOB descripto ...
hile ( oci_fetch ( $stid )) { echo $id . " is " . $fruit -> load ( 100 ) . "<br>\n" ; } // 表示: // 1 is ap ...
-
https://man.plustar.jp/php/function.oci-define-by-name.html
- [similar]
- NoRewindIterator を作成する 11468
- « NoRewindIterator NoRewindIterator::current » PHP Manual NoRewindIterator NoRewindIterator を作
...
は一度しか使えず、巻き戻しされないからです。 <?php $fruit = array( 'apple' , 'banana' , 'cranberry' ); $arr ...
= new ArrayObject ( $fruit ); $it = new NoRewindIterator ( $arr -> getIterato ...
r ()); echo "Fruit A:\n" ; foreach( $it as $item ) { echo $item . "\n ...
" ; } echo "Fruit B:\n" ; foreach( $it as $item ) { echo $item . "\n ...
-
https://man.plustar.jp/php/norewinditerator.construct.html
- [similar]
- libxml のエラー処理関数によるエラー処理 10978
- « collection.xml および collection.xsl ファイルの例 XSLTProcessor » PHP Manual 例 libxml のエラー
...
XSLT の処理中のエラーを捕らえて対応できます。 例1 fruits.xml 妥当な XML ファイルです。 <fruits> <fruit>App ...
le</fruit> <fruit>Banana</fruit> <fruit>Cherry</fruit> </fru ...
its> 例2 fruits.xsl 無効な select 式が含まれています。 <xsl:style ...
ncoding="utf-8" indent="no"/> <xsl:template match="fruits"> <ul> <xsl:apply-templates/> </ul> </xsl:templat ...
-
https://man.plustar.jp/php/xsl.examples-errors.html
- [similar]
- アトリビュートを取得する 10917
- « ReflectionClass::export ReflectionClass::getConstant » PHP Manual ReflectionClass アトリビュー
...
す。 例 例1 基本的な使用法 <?php #[Attribute] class Fruit { } #[Attribute] class Red { } #[Fruit] #[Red] cla ...
; ?> 上の例の出力は以下となります。 Array ( [0] => Fruit [1] => Red ) 例2 クラス名で結果をフィルタする <?ph ...
p #[Attribute] class Fruit { } #[Attribute] class Red { } #[Fruit] #[Red] cla ...
Apple' ); $attributes = $class -> getAttributes ( 'Fruit' ); print_r ( array_map ( fn ( $attribute ) => $at ...
-
https://man.plustar.jp/php/reflectionclass.getattributes.html
- [similar]
- 結果セットから、残っている行を取得する 10840
- « PDOStatement::fetch PDOStatement::fetchColumn » PHP Manual PDOStatement 結果セットから、残って
...
$sth = $dbh -> prepare ( "SELECT name, colour FROM fruit" ); $sth -> execute (); /* 結果セットに残っている全 ...
$sth = $dbh -> prepare ( "SELECT name, colour FROM fruit" ); $sth -> execute (); /* 最初のカラムの全ての値を ...
す。 <?php $insert = $dbh -> prepare ( "INSERT INTO fruit(name, colour) VALUES (?, ?)" ); $insert -> execute ...
$sth = $dbh -> prepare ( "SELECT name, colour FROM fruit" ); $sth -> execute (); /* 最初のカラムの値によって ...
-
https://man.plustar.jp/php/pdostatement.fetchall.html
- [similar]
- トランザクションをコミットする 9125
- « PDO::beginTransaction PDO::__construct » PHP Manual PDO トランザクションをコミットする PDO::co
...
功か全部失敗のどちらかになる */ $sql = 'INSERT INTO fruit (name, colour, calories) VALUES (?, ?, ?)' ; $sth ...
= $dbh -> prepare ( $sql ); foreach ( $fruits as $fruit ) { $sth -> execute (array( $fruit -> n ...
ame , $fruit -> colour , $fruit -> calories , )); } /* 変更をコ ...
ーマを変更する */ $sth = $dbh -> exec ( "DROP TABLE fruit" ); /* 変更をコミットする */ $dbh -> commit (); /* ...
-
https://man.plustar.jp/php/pdo.commit.html
- [similar]
- Schema のコンストラクタ 8850
- « mysql_xdevapi\Schema Schema::createCollection » PHP Manual mysql_xdevapi\Schema Schema のコンス
...
> execute (); $session -> sql ( "CREATE TABLE food.fruit(name text, rating text)" )-> execute (); $schema = ...
例の出力は、 たとえば以下のようになります。 Array ( [fruit] => mysql_xdevapi\Table Object ( [name] => fruit ) ...
連キーワード: xdevapi , construct , trees , Object , fruit , Array , パラメータ , スキーマ , アクセス , Table ...
-
https://man.plustar.jp/php/mysql-xdevapi-schema.construct.html
- [similar]
- スキーマからコレクションを削除する 8712
- « Schema::createCollection Schema::existsInDatabase » PHP Manual mysql_xdevapi\Schema スキーマか
...
> execute (); $session -> sql ( "CREATE TABLE food.fruit(name text, rating text)" )-> execute (); $schema = ...
例の出力は、 たとえば以下のようになります。 Array ( [fruit] => mysql_xdevapi\Table Object ( [name] => fruit ) ...
コレクション , dropCollection , xdevapi , Array , fruit , buildings , Object , collection ...
-
https://man.plustar.jp/php/mysql-xdevapi-schema.dropcollection.html
- [similar]
- 配列 8299
- « 数値形式の文字列 Iterable » PHP Manual 型 配列 配列 PHP の配列は、実際には順番付けられたマップ
...
るよう設定 error_reporting ( E_ALL ); $arr = array( 'fruit' => 'apple' , 'veggie' => 'carrot' ); // 正しい pr ...
int $arr [ 'fruit' ]; // apple print $arr [ 'veggie' ]; // carrot // ...
間違い。これは動作しますが、未定義の定数fruitを使用しているため、 // 同時にE_NOTICEレベルのPHPエラ ...
を発生します // // Notice: Use of undefined constant fruit - assumed 'fruit' in... print $arr [ fruit ]; // a ...
-
https://man.plustar.jp/php/language.types.array.html
- [similar]
- RecursiveDirectoryIterator を作成する 8299
- « RecursiveDirectoryIterator RecursiveDirectoryIterator::getChildren » PHP Manual RecursiveDirec
...
出力は、 たとえば以下のようになります。 SubPathName: fruit/apple.xml SubPath: fruit Key: /tmp/fruit/apple.xml ...
r , directory , construct , スロー , SubPathName , fruit , SubPath , tmp ...
-
https://man.plustar.jp/php/recursivedirectoryiterator.construct.html
- [similar]