関数・メソッド
変更履歴
索引
PHP Manual
サンプル
マニュアル内の全サンプルの一覧
Example#0 - 初歩的な例
Example#1 - 初めての PHP スクリプト: hello.php
Example#2 - PHP からシステムに関する情報を取得する
Example#3 - 変数を出力する (配列要素)
Example#4 - 制御構造 および 関数の使用例
Example#5 - HTML および PHP モードの両方を混在させる
Example#6 - 簡単な HTML フォーム
Example#7 - フォームからのデータを出力する
Example#8 - PHP インストール 手順 (Apache 共有モジュール版)
Example#9 - PHP インストール手順 (Apache 静的モジュール)
Example#10 - Apache を再起動するためのコマンドの例
Example#11 -
Example#12 -
Example#13 -
Example#14 -
Example#15 -
Example#16 -
Example#17 -
Example#18 -
Example#19 -
Example#20 -
Example#21 -
Example#22 -
Example#23 -
Example#24 -
Example#25 -
Example#26 - lighttpd.conf の抜粋
Example#27 - FastCGI レスポンダの起動
Example#28 - リモートの php-fastcgi インスタンスへの接続
Example#29 - OpenBSD パッケージインストールの例
Example#30 - Debian で Apache 2 と組み合わせるインストール例
Example#31 - PHP インストール後に Apache を停止・起動させる
Example#32 - 追加の PHP 5 パッケージを探す方法
Example#33 - PHP と MySQL、cURL のインストール
Example#34 - PHP 5 パッケージ構造
Example#35 - php.ini での CGI および FastCGI 用の設定
Example#36 - FastCGI エクステンションで PHP リクエストを処理するための設定
Example#37 - ファイルのアクセス権の設定
Example#38 - FastCGI と PHP の再利用設定
Example#39 - FastCGI のタイムアウト設定
Example#40 - php.ini ファイルの場所の変更
Example#41 - php.ini での CGI および FastCGI 用の設定
Example#42 - IIS FastCGI プロセスプールの作成
Example#43 - PHP リクエスト用のハンドラマッピングの作成
Example#44 - IIS 匿名認証で使うアカウントの設定
Example#45 - ファイルのアクセス権の設定
Example#46 - index.php を IIS のデフォルトドキュメントにする
Example#47 - FastCGI と PHP の再利用設定
Example#48 - FastCGI のタイムアウト設定
Example#49 - php.ini ファイルの場所の変更
Example#50 - Apache 1.3.x でモジュール版の PHP を使用する場合の設定
Example#51 - Apache 1.3.x で CGI 版の PHP を使用する場合の設定
Example#52 - PHP を Apache 2.x ハンドラとして使う設定
Example#53 -
Example#54 - PHP を Apache 2.x 上で CGI として動かす例
Example#55 - PHP を FastCGI として動かす Apache の設定
Example#56 - Sambar での ISAPI の設定
Example#57 - Windows 版の PHP で Bzip2 拡張モジュールを有効にする
Example#58 - レジストリの変更
Example#59 - 環境変数や PHP の設定をプールに渡す
Example#60 - PHP の設定を nginx.conf で行う例
Example#61 - phpinfo のコール
Example#62 - php.ini の例
Example#63 - Apache 設定の例
Example#64 -
Example#65 - 条件文を使った高度な脱出
Example#66 - PHP の開始タグと終了タグ
Example#67 - 整数リテラル
Example#68 - おかしな 8 進数
Example#69 - 32 ビットシステムにおける整数のオーバーフロー
Example#70 - 64 ビットシステムにおける整数のオーバーフロー
Example#71 - 間違った例
Example#72 - ヒアドキュメントで文字列を括る例
Example#73 - ヒアドキュメントを引数に使用する例
Example#74 - ヒアドキュメントを用いた静的な値の初期化
Example#75 - ヒアドキュメントでのダブルクォート
Example#76 - Nowdoc による文字列のクォートの例
Example#77 - 静的データの例
Example#78 - 簡単な構文の例
Example#79 - 文字列の例
Example#80 - PHP 5.3 と PHP 5.4 の違い
Example#81 - シンプルな配列定義
Example#82 - 型のキャストと値の上書きの例
Example#83 - 整数と文字列のキーの混在例
Example#84 - 数値添字配列でキーを省略する例
Example#85 - 一部の要素にだけキーを指定する例
Example#86 - 配列の要素へのアクセス
Example#87 - 配列のデリファレンス
Example#88 - array() の使用例
Example#89 - コレクション
Example#90 - ループ内での要素の変更
Example#91 - 1 から始まる添字
Example#92 - 配列に代入する
Example#93 - 配列のソート
Example#94 - 再帰および多次元配列
Example#95 - コールバック関数の例
Example#96 - クロージャを使ったコールバックの例
Example#97 - 初期化されていない変数のデフォルト値
Example#98 - global の使用
Example#99 - globalのかわりに$GLOBALSを使用する
Example#100 - スーパーグローバルとスコープの例
Example#101 - 静的変数が必要な場面の例
Example#102 - 静的変数の使用例
Example#103 - 再帰関数での静的変数の使用
Example#104 - 静的変数の宣言
Example#105 - 可変プロパティの例
Example#106 - 簡単なHTMLフォーム
Example#107 - 簡単なPOST HTMLフォームからのデータにアクセスする
Example#108 - より複雑なフォーム変数
Example#109 - setcookieの例
Example#110 - 有効/無効な定数名の例
Example#111 - 定数の定義
Example#112 - const キーワードによる定数の定義
Example#113 - 結合時の評価
Example#114 - 参照による代入
Example#115 - 整数値におけるビット AND、OR および XOR 演算
Example#116 - 文字列でのビット XOR 演算
Example#117 - 整数値のビットシフト
Example#118 - 一般的な配列の比較
Example#119 - デフォルト値を設定する
Example#120 - 三項演算子のわかりにくい挙動
Example#121 - 文字変数に対する算術演算子の使用
Example#122 - 論理演算子についての説明
Example#123 - 配列の比較
Example#124 - クラスでの instanceof の使用法
Example#125 - 継承したクラスでの instanceof の使用法
Example#126 - instanceof を使用して、オブジェクトがクラスのインスタンスで ない かどうかを調べる方法
Example#127 - クラスでの instanceof の使用法
Example#128 - 変数を用いた instanceof の使用法
Example#129 - instanceof での他の変数の調べかた
Example#130 - PHP 5.0 における、クラス名検索時の致命的エラーの回避策
Example#131 - switch構造
Example#132 - switch構造では文字列を使用できる
Example#133 - Tick の使用例
Example#134 - Ticks の使用例
Example#135 - スクリプトのエンコーディングの宣言
Example#136 - 基本的な include の例
Example#137 - 関数内での読み込み
Example#138 - HTTP経由の include
Example#139 - インクルードの戻り値を比較する
Example#140 - include と return 文
Example#141 - 出力バッファリングを用い、 PHP ファイルの内容を文字列として読み込む
Example#142 - PHP 4 における、大文字小文字を区別しない OS 上での include_once
Example#143 - goto の例
Example#144 - ループでの goto の例
Example#145 - これは動作しません
Example#146 - 関数の使用法を説明するための擬似コード
Example#147 - 条件つきの関数
Example#148 - 関数の中の関数
Example#149 - 再帰的な関数
Example#150 - Passing arrays to functions
Example#151 - Passing function parameters by reference
Example#152 - 関数におけるデフォルトパラメータの使用法
Example#153 - スカラー型以外をデフォルト値として使用する
Example#154 - 関数の引数のデフォルト値の 間違った使用法
Example#155 - 関数の引数のデフォルト値の 正しい使用法
Example#156 - return の使用法
Example#157 - 複数の値を得るために配列を返す
Example#158 - 関数からリファレンスを返す
Example#159 - 可変関数の例
Example#160 - 可変メソッドの例
Example#161 - 静的プロパティを含む可変メソッドの例
Example#162 - 無名関数の例
Example#163 - 変数への無名関数の代入
Example#164 - クロージャのスコープ
Example#165 - 簡単なクラス定義
Example#166 - $this 疑似変数の例
Example#167 - インスタンスを作成する
Example#168 - オブジェクトの代入
Example#169 - 新しいオブジェクトの作成
Example#170 - 簡単なクラスの継承
Example#171 - プロパティの宣言
Example#172 - nowdoc を使ったプロパティの初期化
Example#173 - 定数の定義と使用
Example#174 - 静的なデータの例
Example#175 - オートロードの例
Example#176 - オートロードの別の例
Example#177 - 5.3.0 以降での例外処理つきのオートロード
Example#178 - 5.3.0 以降での例外処理つきのオートロード - 独自の例外が見つからない場合
Example#179 - 新しい統一されたコンストラクタを使用する
Example#180 - 名前空間つきのクラスのコンストラクタ
Example#181 - デストラクタの例
Example#182 - プロパティの宣言
Example#183 - メソッドの宣言
Example#184 - 同じ型のオブジェクトの private メンバーへのアクセス
Example#185 - 継承の例
Example#186 - クラス定義の外からの ::
Example#187 - クラス定義の中からの ::
Example#188 - 親クラスのメソッドをコールする
Example#189 - static プロパティの例
Example#190 - static メソッドの例
Example#191 - 抽象クラスの例
Example#192 - 抽象クラスの例
Example#193 - Interface の例
Example#194 - インターフェイスの継承
Example#195 - 複数のインターフェイスの継承
Example#196 - インターフェイスでの定数
Example#197 - トレイトの例
Example#198 - 優先順位の例
Example#199 - もうひとつの優先順位の例
Example#200 - 複数のトレイトの使用例
Example#201 - 衝突の解決
Example#202 - メソッドの可視性の変更
Example#203 - トレイトを組み合わせたトレイト
Example#204 - 抽象メソッドによる、要件の明示
Example#205 - 静的な変数
Example#206 - 静的なメソッド
Example#207 - プロパティの定義
Example#208 - 衝突の解決
Example#209 - __get()、 __set()、__isset() および __unset() メソッドを使ったプロパティのオーバーロードの例
Example#210 - __call() および __callStatic() メソッドによる、メソッドのオーバーロードの例
Example#211 - Simple Object Iteration
Example#212 - Iteratorを実装するオブジェクトの反復処理
Example#213 - IteratorAggregateを実装するオブジェクトの反復処理
Example#214 - Sleep および wakeup
Example#215 - 簡単な例
Example#216 - __invoke() の使用
Example#217 - __set_state() の使用法 (PHP 5.1.0 以降)
Example#218 - finalメソッドの例
Example#219 - finalクラスの例
Example#220 - オブジェクトのクローン作成
Example#221 - PHP 5におけるオブジェクト比較の例
Example#222 - タイプヒンティングの例
Example#223 - self:: の使用例
Example#224 - static:: のシンプルな使用法
Example#225 - 非静的コンテキストにおける static:: の使用法
Example#226 - 転送するコールと転送しないコール
Example#227 - 参照とオブジェクト
Example#228 - 名前空間構文の例
Example#229 - 名前空間の宣言
Example#230 - 名前空間の宣言
Example#231 - 階層つきの名前空間の宣言
Example#232 - シンプルな組み合わせ方式による複数の名前空間の宣言
Example#233 - 波括弧構文による複数の名前空間の宣言
Example#234 - 複数の名前空間および名前空間に属さないコードの宣言
Example#235 - 複数の名前空間および名前空間に属さないコードの宣言
Example#236 - グローバルなクラス、関数および定数への名前空間内からのアクセス
Example#237 - 要素への動的なアクセス
Example#238 - 名前空間つき要素への動的なアクセス
Example#239 - 名前空間内のコードでの __NAMESPACE__ の例
Example#240 - グローバルなコードでの __NAMESPACE__ の例
Example#241 - __NAMESPACE__ による動的な名前の作成
Example#242 - 名前空間内での namespace 演算子
Example#243 - グローバルコードでの namespace 演算子
Example#244 - use 演算子によるインポート/エイリアス
Example#245 - use 演算子によるインポート/エイリアスで、複数の use 文を組み合わせる例
Example#246 - インポートと動的名
Example#247 - インポートと完全修飾名
Example#248 - 間違ったインポートの例
Example#249 - グローバル空間を指定する方法
Example#250 - 名前空間内からのグローバルクラスへのアクセス
Example#251 - 名前空間内からのグローバル関数/定数への移行
Example#252 - 名前解決の例
Example#253 - 名前空間の外部にあるグローバルクラスへのアクセス
Example#254 - 名前空間の外部にあるグローバルクラスへのアクセス
Example#255 - 名前空間内からの内部クラスへのアクセス
Example#256 - 名前空間内のクラス、関数あるいは定数へのアクセス
Example#257 - 完全修飾名
Example#258 - 修飾名
Example#259 - 非修飾クラス名
Example#260 - 非修飾関数/定数名
Example#261 - ダブルクォートで囲んだ文字列内で名前空間名を扱う際の危険
Example#262 - 未定義の定数
Example#263 - 未定義の定数
Example#264 - 例外を投げるには
Example#265 - 例外処理での finally ブロック
Example#266 - ネストした例外
Example#267 - 例外クラスを構築する
Example#268 - 例外クラスの拡張 (PHP 5.3.0+)
Example#269 - ジェネレータを使った range の実装
Example#270 - 値を yield する単純な例
Example#271 - キー/値 のペアの yield
Example#272 - NULL の yield
Example#273 - 参照による値の yield
Example#274 - Generator クラス
Example#275 - Generator::send による値の注入
Example#276 - 未定義の変数のリファレンスの使用
Example#277 - 関数内でのグローバル変数の参照
Example#278 - リファレンスと foreach ステートメント
Example#279 - $GLOBALS の例
Example#280 - $_SERVER の例
Example#281 - $_GET の例
Example#282 - $_POST の例
Example#283 - $_ENV の例
Example#284 - $_COOKIE の例
Example#285 - $php_errormsg の例
Example#286 - $http_response_header の例
Example#287 - $argc の例
Example#288 - $argv の例
Example#289 - Exception::getMessage の例
Example#290 - Exception::getPrevious の例
Example#291 - Exception::getCode の例
Example#292 - Exception::getFile の例
Example#293 - Exception::getLine の例
Example#294 - Exception::getTrace の例
Example#295 - Exception::getTraceAsString の例
Example#296 - Exception::__toString の例
Example#297 - set_error_handler を使用した、エラーメッセージから ErrorException への変換
Example#298 - ErrorException::getSeverity の例
Example#299 - 基本的な使用法
Example#300 - 基本的な例
Example#301 - 基本的な使用法
Example#302 - ArrayAccess::offsetExists の例
Example#303 - 基本的な使用法
Example#304 - Closure::bind の例
Example#305 - Closure::bindTo の例
Example#306 - 基本的な bindto の使用例
Example#307 - ページの取得と POST データの送信
Example#308 - リダイレクトを無視し、ヘッダとコンテンツの取得
Example#309 - ページの取得と POST データの送信
Example#310 - リダイレクト後の URL の検出
Example#311 - HTTP リクエストで独自のヘッダを送信する
Example#312 - php://temp/maxmemory
Example#313 - php://filter/resource=<フィルタの対象となるストリーム>
Example#314 - php://filter/read=<読み込みチェーンに適用するフィルタのリスト>
Example#315 - php://filter/write=<書き込みチェーンに適用するフィルタのリスト>
Example#316 - data:// の内容の表示
Example#317 - media type の取得
Example#318 - 基本的な使用法
Example#319 - アクティブな接続からストリームをオープンする
Example#320 - $session を有効にしておかないといけない!
Example#321 - RAR アーカイブの走査
Example#322 - 暗号化されたファイルのオープン (ヘッダの暗号化)
Example#323 - 甘い変数の確認から生じるリスク
Example#324 - ... ファイルシステムへの攻撃
Example#325 - より安全なファイル名の確認
Example#326 - より安全なファイル名の確認
Example#327 - null バイトに対して脆弱なスクリプト
Example#328 - 入力を適切に検証する例
Example#329 - ハッシュされたパスワードフィールドを使う
Example#330 - 表示するデータを分割し ... そしてスーパーユーザーを作成します。 (PostgreSQLの例)
Example#331 - 記事...そして(全てのデータベースサーバーの)いくつかのパスワード のリストを表示する
Example#332 - パスワードのリセットから ... (全てのデータベースサーバーで)より多 くの権限を得るまで
Example#333 - データベースホストのオペレーティングシステムを攻撃する (MSSQLサーバー)
Example#334 - ページング用のクエリを構築するためのより安全な方法
Example#335 - カスタムHTMLページにより変数を攻撃する
Example#336 - 一般的なデバッグ変数を探す
Example#337 - E_ALLで危険な変数を見つける
Example#338 - register_globals = on の誤った使用例
Example#339 - register_globals on またはoffの場合のセッションの使用例
Example#340 - 簡単に変数汚染を検出する
Example#341 - 危険な変数の使用
Example#342 - マジッククオートをサーバー側で無効にする
Example#343 - マジッククオートを実行時に無効にする
Example#344 - PHPを他の言語として隠す
Example#345 - PHP拡張子用に未知の型を使用する
Example#346 - PHP拡張子としてHTML型を使用する
Example#347 - Basic HTTP 認証の例
Example#348 - Digest HTTP 認証の例
Example#349 - 新規に名前 / パスワードを入力させる HTTP 認証の例
Example#350 - 簡単なXForms検索フォーム
Example#351 - XFormにより$_POSTを送信する
Example#352 - ファイルアップロード用のフォーム
Example#353 - ファイルのアップロードを検証する
Example#354 - ファイルの配列をアップロードする
Example#355 - 複数ファイルのアップロード
Example#356 - HTTP PUT されたファイルの保存
Example#357 - リモートページのタイトルを得る
Example#358 - リモートサーバーにデータを保存する
Example#359 - CGI SAPI との違いを示す例
Example#360 -
Example#361 - PHP に組み込まれた (そしてロードされた) Zend モジュールの表示
Example#362 - ダブルクォートの使用時に構文エラーが出る例
Example#363 - シングルクォートを使い、シェルの変数置換を防ぐ例
Example#364 - とあるプロジェクトの行数をカウントするための -B, -R そして -E オプションの使用例
Example#365 - -v による、SAPI 名および PHP と Zend のバージョンの取得
Example#366 - --ini の例
Example#367 - 基本的な --rf の使用法
Example#368 - --rc の例
Example#369 - --re の例
Example#370 - --ri の例
Example#371 - シェルスクリプトとしての PHP スクリプトの実行
Example#372 - コマンドラインから実行されることを意図したスクリプト(script.php)
Example#373 - コマンドライン PHP スクリプトを実行するバッチファイル(script.bat)
Example#374 - 対話シェル上でのコードの実行
Example#375 - タブ補完
Example#376 - 対話シェル内での php.ini の設定
Example#377 - ウェブサーバーの起動
Example#378 - ドキュメントルートディレクトリを指定した起動
Example#379 - ルータースクリプトの使用
Example#380 - CLI ウェブサーバーを使っているかどうかのチェック
Example#381 - 未サポートのファイル形式の処理
Example#382 - CLI ウェブサーバーへのリモートマシンからのアクセス
Example#383 - 新規 zval コンテナを作成
Example#384 - zval 情報を表示
Example#385 - zval の refcount を増加
Example#386 - zval refcount を減少
Example#387 - array zval を作成
Example#388 - 既存の要素を配列に追加
Example#389 - 配列から要素を除去
Example#390 - それ自体の要素として配列自体を追加
Example#391 - $a をアンセット
Example#392 - メモリ使用量の例
Example#393 - GC パフォーマンスの影響
Example#394 - 上記のスクリプトを実行
Example#395 - GC ベンチマーキングを使用可能にするために PHP を再コンパイル
Example#396 - GC 統計
Example#397 - apc.rfc1867 の例
Example#398 - apc_add の例
Example#399 - apc_bin_load の例
Example#400 - apc_cache_info の例
Example#401 - apc_cas の例
Example#402 - apc_dec の例
Example#403 - apc_define_constants の例
Example#404 - apc_delete_file の例
Example#405 - apc_delete の例
Example#406 - apc_exists の例
Example#407 - apc_fetch の例
Example#408 - apc_inc の例
Example#409 - apc_load_constants の例
Example#410 - apc_sma_info の例
Example#411 - A apc_store の例
Example#412 - APCIterator::__construct の例
Example#413 - tcplisten を使用した典型的なセッション
Example#414 - apd_callstack の例
Example#415 - apd_clunk の例
Example#416 - apd_continue の例
Example#417 - apd_croak の例
Example#418 - apd_dump_function_table の例
Example#419 - apd_dump_persistent_resources の例
Example#420 - apd_dump_regular_resources の例
Example#421 - apd_echo の例
Example#422 - apd_get_active_symbols の例
Example#423 - apd_set_pprof_trace の例
Example#424 - apd_set_session_trace_socket の例
Example#425 - apd_set_session_trace の例
Example#426 - apd_set_session の例
Example#427 - override_function の例
Example#428 - rename_function の例
Example#429 - bcompiler_load_exe の例
Example#430 - bcompiler_load の例
Example#431 - bcompiler_parse_class の例
Example#432 - bcompiler_read の例
Example#433 - bcompiler_write_class example
Example#434 - bcompiler_write_constant の例
Example#435 - bcompiler_write_exe_footer の例
Example#436 - bcompiler_write_file の例
Example#437 - bcompiler_write_footer の例
Example#438 - bcompiler_write_function の例
Example#439 - bcompiler_write_functions_from_file の例
Example#440 - bcompiler_write_header の例
Example#441 - スクリプト内でのエラー処理
Example#442 - debug_backtrace の例
Example#443 - debug_print_backtrace の例
Example#444 - error_get_last の例
Example#445 - error_log の例
Example#446 - error_reporting の例
Example#447 - restore_error_handler の例
Example#448 - restore_exception_handler の例
Example#449 - set_error_handler および trigger_error によるエラー処理
Example#450 - set_exception_handler の例
Example#451 - trigger_error の例
Example#452 - PHP アプリケーション自身 (関数) 内のデータの取得
Example#453 - gengraph.php の使用例
Example#454 - inclued のダンプデータの一覧
Example#455 - inclued_get_data の例
Example#456 - 関数内での巨大な配列の作成
Example#457 - 出力制御の例
Example#458 - ob_end_clean の例
Example#459 - ob_end_flush example
Example#460 - 単純な ob_get_clean の例
Example#461 - 単純な ob_get_contents の例
Example#462 - ob_get_flush の例
Example#463 - 単純な ob_get_length の例
Example#464 - ob_gzhandler の例
Example#465 - ob_list_handlers の例
Example#466 - ユーザー定義のコールバック関数の例
Example#467 - output_add_rewrite_var の例
Example#468 - output_reset_rewrite_vars の例
Example#469 - assert_options の例
Example#470 - 失敗した assertion をカスタムハンドラで処理する
Example#471 - カスタムハンドラを使った説明の表示
Example#472 - dl の例
Example#473 - extension_loaded の例
Example#474 - gc_enabled の例
Example#475 - get_current_user の例
Example#476 - get_defined_constants の例
Example#477 - XML 関数の出力
Example#478 - get_include_path の例
Example#479 - get_included_files の例
Example#480 - get_loaded_extensions の例
Example#481 - get_magic_quotes_gpc の例
Example#482 - get_magic_quotes_runtime の例
Example#483 - getenv の例
Example#484 - getlastmod の例
Example#485 - getopt の例
Example#486 - getopt の例 その2
Example#487 - getopt の例 その3
Example#488 - getrusage の例
Example#489 - ini_get_all の例
Example#490 - details を無効にする例
Example#491 - ini_get の例
Example#492 - ini_restore の例
Example#493 - ini オプションの設定
Example#494 - memory_get_usage の例
Example#495 - php_ini_loaded_file の例
Example#496 - 返される ini ファイルを一覧する例
Example#497 - php_logo_guid の例
Example#498 - php_sapi_name の例
Example#499 - php_uname の例
Example#500 - OS 関連の定数の例
Example#501 - 全般的なクレジットの出力
Example#502 - コア開発者およびドキュメントグループの表示
Example#503 - すべてのクレジットの表示
Example#504 - phpinfo の例
Example#505 - phpversion の例
Example#506 - PHP_VERSION_ID の例および使用法
Example#507 - 環境変数の設定
Example#508 - restore_include_path の例
Example#509 - set_include_path の例
Example#510 - include path の追加
Example#511 - set_magic_quotes_runtime の例
Example#512 - sys_get_temp_dir の例
Example#513 - version_compare の例
Example#514 - zend_logo_guid の例
Example#515 - zend_thread_id の例
Example#516 - zend_version の例
Example#517 - php.ini で runkit.superglobal=_FOO,_BAR と指定した場合のスーパーグローバル
Example#518 - 機能を制限したサンドボックスのインスタンス化
Example#519 - サンドボックス内部の変数の扱い
Example#520 - サンドボックス内の関数のコール
Example#521 - サンドボックス内の関数に引数を渡す
Example#522 - サンドボックスから変数を使用する
Example#523 - 親の変数にアクセスする
Example#524 - runkit_class_adopt の例
Example#525 - runkit_class_emancipate の例
Example#526 - runkit_function_add の例
Example#527 - runkit_function_copy の例
Example#528 - runkit_function_redefine の例
Example#529 - runkit_method_add の例
Example#530 - runkit_method_copy の例
Example#531 - runkit_method_redefine の例
Example#532 - runkit_method_remove の例
Example#533 - runkit_method_rename の例
Example#534 - runkit_return_value_used の例
Example#535 - 出力を変数に送る
Example#536 - 実行時における scream の有効化/無効化
Example#537 - Weakref の使用例
Example#538 - WeakRef の使用例
Example#539 - Weakref::acquire の例
Example#540 - ネストした確保と解放の例
Example#541 - Weakref::__construct の例
Example#542 - Weakref::release の例
Example#543 - Weakmap の使用例
Example#544 - wincache.ignorelist の例
Example#545 - wincache.php 用の認証設定
Example#546 - WinCache セッションハンドラの有効化
Example#547 - WinCache の関数切り替えの有効化
Example#548 - Reroute.ini ファイルの内容
Example#549 - wincache_fcache_fileinfo の例
Example#550 - wincache_fcache_meminfo の例
Example#551 - wincache_lock の使用
Example#552 - wincache_ocache_fileinfo の例
Example#553 - wincache_ocache_meminfo の例
Example#554 - wincache_refresh_if_changed の例
Example#555 - wincache_rplist_fileinfo の例
Example#556 - wincache_rplist_meminfo の例
Example#557 - wincache_scache_info の例
Example#558 - wincache_scache_meminfo の例
Example#559 - wincache_ucache_add で key を文字列にする例
Example#560 - wincache_ucache_add で key を配列にする例
Example#561 - wincache_ucache_cas の使用法
Example#562 - wincache_ucache_clear の使用法
Example#563 - wincache_ucache_dec の使用法
Example#564 - wincache_ucache_delete で key に文字列を使う例
Example#565 - wincache_ucache_delete で key に配列を使う例
Example#566 - wincache_ucache_delete で key に配列を使い、いくつかの要素の削除に失敗する例
Example#567 - wincache_ucache_exists の使用法
Example#568 - wincache_ucache_get で key に文字列を使う例
Example#569 - wincache_ucache_get で key に配列を使う例
Example#570 - wincache_ucache_inc の使用法
Example#571 - wincache_ucache_info の使用
Example#572 - wincache_ucache_meminfo の例
Example#573 - wincache_ucache_set で key を文字列にする例
Example#574 - wincache_ucache_set で key を配列にする例
Example#575 - wincache_unlock の使用
Example#576 - オプションの GUI を使った Xhprof の例
Example#577 - xhprof_disable の例
Example#578 - xhprof_enable の例
Example#579 - xhprof_sample_disable の例
Example#580 - id3_get_frame_long_name の例
Example#581 - id3_get_frame_short_name の例
Example#582 - id3_get_genre_id の例
Example#583 - id3_get_genre_list の例
Example#584 - id3_get_genre_name の例
Example#585 - id3_get_tag の例
Example#586 - id3_get_tag の例
Example#587 - id3_get_version の例
Example#588 - id3_remove_tag の例
Example#589 - id3_set_tag の例
Example#590 - 新しい MP3 ファイルのオープンと読み込み
Example#591 - OGG/Vorbis ファイルを読み込む
Example#592 - オーディオファイルを OGG/Vorbis にエンコードする
Example#593 - KADM5 拡張モジュールの概要
Example#594 - プリンシパルのパスワードを変更する例
Example#595 - プリンシパルを作成する例
Example#596 - kadm5_delete_principal の例
Example#597 - kadm5_get_policies の例
Example#598 - kadm5_get_principal の例
Example#599 - kadm5_get_principals の例
Example#600 - KADM5 の初期化の例
Example#601 - プリンシパルの変更の例
Example#602 - radius_acct_open の例
Example#603 - radius_add_server の例
Example#604 - radius_auth_open の例
Example#605 - radius_create_request の例
Example#606 - radius_cvt_addr の例
Example#607 - radius_cvt_int の例
Example#608 - radius_cvt_string の例
Example#609 - radius_get_attr の例
Example#610 - radius_get_vendor_attr の例
Example#611 - radius_put_attr の例
Example#612 - radius_put_int の例
Example#613 - radius_put_string の例
Example#614 - radius_put_vendor_attr の例
Example#615 - cal_days_in_month の例
Example#616 - cal_from_jd の例
Example#617 - cal_info の例
Example#618 - easter_date の例
Example#619 - easter_days の例
Example#620 - カレンダー関数
Example#621 - jdtojewish の例
Example#622 - DateTime::add の例
Example#623 - DateTime::add の別の例
Example#624 - 月を加算するときの注意点
Example#625 - DateTime::__construct の例
Example#626 - DateTime::__construct の複雑な例
Example#627 - DateTime::createFromFormat の例
Example#628 - DateTime::createFromFormat の複雑な例
Example#629 - DateTime::diff の例
Example#630 - DateTime オブジェクトの比較
Example#631 - DateTime::format の例
Example#632 - DateTime::getLastErrors の例
Example#633 - DateTime::getOffset の例
Example#634 - DateTime::getTimestamp の例
Example#635 - DateTime::getTimezone の例
Example#636 - DateTime::modify の例
Example#637 - 月の加減算には注意
Example#638 - DateTime::setDate の例
Example#639 - 範囲を超えた値が親の値に加算される例
Example#640 - DateTime::setISODate の例
Example#641 - 範囲を超えた値が親の値に加算される例
Example#642 - その週が存在する月を探す例
Example#643 - DateTime::setTime の例
Example#644 - 範囲を超えた値が親の値に加算される例
Example#645 - DateTime::setTimestamp の例
Example#646 - PHP 5.2 における DateTime::setTimestamp のもうひとつの方法
Example#647 - DateTime::setTimeZone の例
Example#648 - DateTime::sub の例
Example#649 - DateTime::sub の別の例
Example#650 - 月を減算するときの注意点
Example#651 - DateTimeZone のインスタンスを作成する際のエラー処理
Example#652 - DateTimeZone::getLocation の例
Example#653 - DateTimeZone::getOffset の例
Example#654 - timezone_transitions_get の例
Example#655 - timezone_abbreviations_list の例
Example#656 - timezone_identifiers_list の例
Example#657 -
Example#658 - 日付の間隔のパース
Example#659 - DateInterval の例
Example#660 - DateInterval での繰り越しの例
Example#661 - DateInterval および DateTime::diff での修飾子 %a および %d
Example#662 - DatePeriod の例
Example#663 - DatePeriod で DatePeriod::EXCLUDE_START_DATE を使う例
Example#664 - checkdate の例
Example#665 - デフォルトのタイムゾーンの取得
Example#666 - タイムゾーンの短縮名の取得
Example#667 - デフォルトのタイムゾーンの取得
Example#668 - date_parse_from_format の例
Example#669 - date_parse の例
Example#670 - date_sun_info の例
Example#671 - date_sunrise の例
Example#672 - date_sunset の例
Example#673 - date の例
Example#674 - date の文字をエスケープする
Example#675 - date と mktime の例
Example#676 - date のフォーマット指定
Example#677 - getdate の例
Example#678 - gettimeofday の例
Example#679 - gmdate の例
Example#680 - gmmktime の基本的な例
Example#681 - gmstrftime の例
Example#682 - idate の例
Example#683 - time の例
Example#684 - microtime でタイマスクリプト実行
Example#685 - PHP 5 におけるタイマスクリプト実行
Example#686 - microtime と REQUEST_TIME_FLOAT の例 (PHP 5.4.0 以降)
Example#687 - mktime の基本的な例
Example#688 - mktime の例
Example#689 - 月の末日
Example#690 - strftime のロケールの例
Example#691 - ISO 8601:1988 の週番号の例
Example#692 - %e 修飾子を使う、クロスプラットフォーム対応の例
Example#693 - すべての書式の表示
Example#694 - strptime の例
Example#695 - A strtotime の例
Example#696 - 失敗のチェック
Example#697 - time の例
Example#698 - timezone_name_from_abbr の例
Example#699 - timezonedb のバージョンの取得
Example#700 - 指定した色で文字列を画面に書き込む
Example#701 - ncurses_getmouse の例
Example#702 - 指定した色で文字列を画面に書き込む
Example#703 - 指定した色で文字列を画面に書き込む
Example#704 - ncurses_mousemask の例
Example#705 - 指定した色で文字列を画面に書き込む
Example#706 - Newt の使用例
Example#707 - newt_button の例
Example#708 - newt_draw_root_text の例
Example#709 - newt_form_add_component の例
Example#710 - newt_form_add_components の例
Example#711 - newt_form の例
Example#712 - newt_get_screen_size の例
Example#713 - newt_win_entries の例
Example#714 - Readline コールバックインターフェイスの例
Example#715 - readline の例
Example#716 - 簡単な bzip2 の例
Example#717 - データの圧縮
Example#718 - 文字列を解凍する
Example#719 - bzerror の例
Example#720 - bzopen の例
Example#721 - bzread の例
Example#722 - bzwrite の例
Example#723 - 外部ファイルの使用
Example#724 - Phar アーカイブ内のファイルの使用
Example#725 - phar 形式から tar 形式への phar アーカイブの変換
Example#726 - phar.extract_list の使用例
Example#727 - phar.cache_list の使用例
Example#728 - Phar::addEmptyDir の例
Example#729 - Phar::addFile の例
Example#730 - Phar::addFromString の例
Example#731 - Phar::apiVersion の例
Example#732 - Phar::buildFromDirectory の例
Example#733 - SplFileInfo を使用した Phar::buildFromIterator の例
Example#734 - その他のイテレータを使用した Phar::buildFromIterator の例
Example#735 - Phar::canCompress の例
Example#736 - Phar::canWrite の例
Example#737 - Phar::compress の例
Example#738 - Phar::compressAllFilesBZIP2 の例
Example#739 - Phar::compressAllFilesGZ の例
Example#740 - Phar::compressFiles の例
Example#741 - Phar::__construct の例
Example#742 - Phar::convertToData の例
Example#743 - Phar::convertToExecutable の例
Example#744 - Phar::copy の例
Example#745 - Phar::count の例
Example#746 - Phar::createDefaultStub の例
Example#747 - Phar::decompress の例
Example#748 - Phar::decompressFiles の例
Example#749 - Phar::delMetaData の例
Example#750 - Phar::delete の例
Example#751 - Phar::extractTo の例
Example#752 - Phar::getMetadata の例
Example#753 - Phar::getStub の例
Example#754 - Phar::hasMetadata の例
Example#755 - Phar::interceptFileFuncs の例
Example#756 - Phar::interceptFileFuncs の例
Example#757 - Phar::isBuffering の例
Example#758 - Phar::isCompressed の例
Example#759 - Phar::loadPhar の例
Example#760 - Phar::mapPhar の例
Example#761 - Phar::mount の例
Example#762 - Phar::mungServer の例
Example#763 - Phar::offsetExists の例
Example#764 - Phar::offsetGet の例
Example#765 - Phar::offsetSet の例
Example#766 - Phar::offsetUnset の例
Example#767 - Phar::running の例
Example#768 - Phar::setAlias の例
Example#769 - Phar::setDefaultStub の例
Example#770 - Phar::setMetadata の例
Example#771 - Phar::setStub の例
Example#772 - Phar::startBuffering の例
Example#773 - Phar::stopBuffering の例
Example#774 - Phar::uncompressAllFiles の例
Example#775 - Phar::unlinkArchive の例
Example#776 - Phar::webPhar の例
Example#777 - PharData::addEmptyDir の例
Example#778 - PharData::addFile の例
Example#779 - PharData::addFromString の例
Example#780 - PharData::buildFromDirectory の例
Example#781 - SplFileInfo を使用した PharData::buildFromIterator の例
Example#782 - その他のイテレータを使用した PharData::buildFromIterator の例
Example#783 - PharData::compress の例
Example#784 - PharData::compressFiles の例
Example#785 - PharData::__construct の例
Example#786 - PharData::convertToData の例
Example#787 - PharData::convertToExecutable の例
Example#788 - PharData::copy の例
Example#789 - PharData::decompress の例
Example#790 - PharData::decompressFiles の例
Example#791 - PharData::delMetaData の例
Example#792 - PharData::delete の例
Example#793 - PharData::extractTo の例
Example#794 - PharData::offsetSet の例
Example#795 - PharData::offsetUnset の例
Example#796 - Phar::setMetadata の例
Example#797 - PharFileInfo::chmod の例
Example#798 - PharFileInfo::compress の例
Example#799 - PharFileInfo::__construct の例
Example#800 - PharFileInfo::decompress の例
Example#801 - PharFileInfo::delMetaData の例
Example#802 - PharFileInfo::getCRC32 の例
Example#803 - PharFileInfo::getCompressedSize の例
Example#804 - PharFileInfo::getMetadata の例
Example#805 - PharFileInfo::getPharFlags の例
Example#806 - PharFileInfo::isCRCChecked の例
Example#807 - PharFileInfo::isCompressed の例
Example#808 - PharFileInfo::isCompressedBZIP2 の例
Example#809 - PharFileInfo::isCompressedGZ の例
Example#810 - PharFileInfo::setCompressedBZIP2 の例
Example#811 - PharFileInfo::setCompressedGZ の例
Example#812 - PharFileInfo::setMetadata の例
Example#813 - PharFileInfo::setUncompressed の例
Example#814 - Rar のインストール
Example#815 - オンザフライでの復元
Example#816 - RAR 拡張モジュールでの展開の例
Example#817 - オブジェクト指向型
Example#818 - 手続き型
Example#819 - オブジェクト指向型
Example#820 - 手続き型
Example#821 - オブジェクト指向型
Example#822 - 手続き型
Example#823 - オブジェクト指向型
Example#824 - 手続き型
Example#825 - オブジェクト指向型
Example#826 - 手続き型
Example#827 - オブジェクト指向型
Example#828 - 手続き型
Example#829 - オブジェクト指向型
Example#830 - 手続き型
Example#831 - ボリュームコールバック
Example#832 - オブジェクト指向型
Example#833 - 手続き型
Example#834 - RarArchive::__toString の例
Example#835 - RarEntry::extract の例
Example#836 - アーカイブ内のすべてのファイルを展開する方法
Example#837 - RarEntry::getAttr の例
Example#838 - RarEntry::getHostOs の例 (バージョン >= 2.0.0)
Example#839 - RarEntry::getHostOs の例 (バージョン <= 1.0.0)
Example#840 - RarEntry::getMethod の例
Example#841 - RarEntry::getName の例
Example#842 - RarEntry::getPackedSize の例
Example#843 - RarEntry::getStream の例
Example#844 - RarEntry::getUnpackedSize の例
Example#845 - RarEntry::getVersion の例
Example#846 - RarException::isUsingExceptions の例
Example#847 - RarException::setUsingExceptions の例
Example#848 - Zip アーカイブの作成
Example#849 - アーカイブの詳細の出力および一覧表示
Example#850 - Zip ストリームラッパーによる OpenOffice メタ情報の読み込み
Example#851 - Zip の使用例
Example#852 - アーカイブ内での新規ディレクトリの作成
Example#853 - オープンおよび抽出
Example#854 - 新しいアーカイブへのエントリの追加
Example#855 - アーカイブ内のディレクトリへのファイルの追加
Example#856 - インデックスを使用した、アーカイブからのファイルの削除
Example#857 - 名前を使用した、アーカイブからのファイルやディレクトリの削除
Example#858 - 全エントリの展開
Example#859 - 二つのエントリの展開
Example#860 - アーカイブのコメントの出力
Example#861 - エントリのコメントの出力
Example#862 - エントリのコメントの出力
Example#863 - ファイルの内容の取得
Example#864 - ファイルの内容の取得
Example#865 - zip エントリの画像への変換
Example#866 - getnameindex の例
Example#867 - エントリの内容を fread で取得し、それを保存する
Example#868 - 先ほどの例と同じことを、fopen および zip ストリームラッパーで行う
Example#869 - ストリームラッパーと画像の組み合わせ。xml 関数とでも使用可能
Example#870 - アーカイブを作成し、ZipArchive::locateName を使用する
Example#871 - オープンおよび展開
Example#872 - アーカイブの作成
Example#873 - エントリ名の変更
Example#874 - エントリ名の変更
Example#875 - アーカイブの作成およびコメントの設定
Example#876 - アーカイブをオープンし、エントリのコメントを設定する
Example#877 - アーカイブをオープンし、エントリのコメントを設定する
Example#878 - エントリの情報の出力
Example#879 - エントリの情報の出力
Example#880 - 簡単な Zlib の例
Example#881 - gzclose の例
Example#882 - gzcompress の例
Example#883 - gzdeflate の例
Example#884 - gzip ファイルの生成
Example#885 - gzeof の例
Example#886 - gzfile の例
Example#887 - gzgetc の例
Example#888 - gzgets の例
Example#889 - gzgetss の例
Example#890 - gzinflate の例
Example#891 - gzopen の例
Example#892 - gzpassthru の例
Example#893 - gzread の例
Example#894 - gzseek の例
Example#895 - gzuncompress の例
Example#896 - gzwrite の例
Example#897 - CrackLib の例
Example#898 - hash_algos の例
Example#899 - hash_copy の例
Example#900 - hash_file の使用例
Example#901 - hash_final の例
Example#902 - hash_hmac_file の例
Example#903 - hash_hmac の例
Example#904 - 段階的なハッシュの例
Example#905 - hash_pbkdf2 の基本的な使い方の例
Example#906 - hash_update_stream の例
Example#907 - hash の例
Example#908 - 2.4.x 以降において ECB モードで TripleDES により入力を暗号化する
Example#909 - mcrypt_create_iv の例
Example#910 - mcrypt_enc_get_algorithms_name の例
Example#911 - mcrypt_enc_get_modes_name の例
Example#912 - mcrypt_enc_get_supported_key_sizes の例
Example#913 - mcrypt_encrypt の例
Example#914 - mcrypt_get_block_size の例
Example#915 - mcrypt_get_cipher_name の例
Example#916 - mcrypt_get_iv_size の例
Example#917 - mcrypt_get_key_size の例
Example#918 - mcrypt_list_algorithms の例
Example#919 - mcrypt_list_modes の例
Example#920 - mcrypt_module_open の例
Example#921 - mcrypt_module_open を暗号化で使用する
Example#922 - mcrypt_module_self_test の例
Example#923 - mdecrypt_generic の例
Example#924 - MD5 ダイジェストと hmac を計算し、16 進数で出力する
Example#925 - 全ハッシュをループする
Example#926 - mhash_get_block_size の例
Example#927 - mhash_get_hash_name の例
Example#928 - openssl_cipher_iv_length の例
Example#929 - 自己署名証明書の作成
Example#930 - openssl_csr_sign の例 - CSR に署名する(あなた自身の CA を作成する)
Example#931 - openssl_error_string の例
Example#932 - openssl_get_cipher_methods の例
Example#933 - openssl_get_md_methods の例
Example#934 - openssl_open の例
Example#935 - openssl_pkcs7_decrypt の例
Example#936 - openssl_pkcs7_encrypt の例
Example#937 - openssl_pkcs7_sign の例
Example#938 - openssl_random_pseudo_bytes の例
Example#939 - openssl_seal の例
Example#940 - openssl_sign の例
Example#941 - openssl_verify の例
Example#942 - password_hash の例
Example#943 - password_verify の例
Example#944 - DBA の例
Example#945 - データベースへのアクセス
Example#946 - dba_handlers の例
Example#947 - dbx_close の例
Example#948 - dbx_compare の例
Example#949 - dbx_connect example
Example#950 - dbx_error の例
Example#951 - dbx_escape_string の例
Example#952 - 返り値を処理する方法
Example#953 - 各フィールドの名前と型を一覧表示する
Example#954 - data プロパティの内容を HTML テーブルで表示する
Example#955 - UNBUFFERED クエリの処理法
Example#956 - 返り値を処理する方法
Example#957 - dbx_sort の例
Example#958 - DSN なしの接続
Example#959 - odbc_execute および odbc_prepare の例
Example#960 - odbc_fetch_into の例
Example#961 - odbc_next_result
Example#962 - odbc_execute および odbc_prepare の例
Example#963 - odbc_result の例
Example#964 - odbc_setoption の例
Example#965 - PDO::ATTR_DRIVER_NAME の使用例
Example#966 - MySQL への接続
Example#967 - 接続エラーの処理
Example#968 - 接続を閉じる
Example#969 - 持続的な接続
Example#970 - トランザクション内で一括処理を行う
Example#971 - プリペアドステートメントを使用して、繰り返し挿入処理を行う
Example#972 - プリペアドステートメントを使用して、繰り返し挿入処理を行う
Example#973 - プリペアドステートメントを使用してデータを取得する
Example#974 - 出力パラメータを指定してストアドプロシージャをコールする
Example#975 - 入出力パラメータを指定してストアドプロシージャをコールする
Example#976 - プレースホルダの間違った使用法
Example#977 - PDO インスタンスの作成およびエラーモードの設定
Example#978 - PDO インスタンスの作成およびコンストラクタでのエラーモードの設定
Example#979 - データベース内の画像を表示する
Example#980 - 画像をデータベースに挿入する
Example#981 - 画像をデータベースに挿入する: Oracle
Example#982 - トランザクションをロールバックする
Example#983 - 基本的なトランザクションをコミットする
Example#984 - DDL トランザクションをコミットする
Example#985 - ドライバ呼び出しにより PDO インスタンスを生成する
Example#986 - URI 呼び出しにより PDO インスタンスを生成する
Example#987 - エイリアスにより PDO インスタンスを生成する
Example#988 - SQLSTATE コードを取得する
Example#989 - DB2 データベースに対する PDO_ODBC 接続の errorInfo() フィールドを表示する
Example#990 - DELETE 文の発行
Example#991 - データベース接続の属性を取得する
Example#992 - PDO::getAvailableDrivers の例
Example#993 - 名前付きパラメータを用いて SQL ステートメントを準備する
Example#994 - 疑問符パラメータを用いて SQL ステートメントを準備する
Example#995 - PDO::query の例
Example#996 - 通常の文字列をクオートする
Example#997 - 危険な文字列をクオートする
Example#998 - 複雑な文字列をクオートする
Example#999 - トランザクションをロールバックする
Example#1000 - バインドした結果セットを PHP 変数に出力する
Example#1001 - 名前付けされたプレースホルダを用いてプリペアドステートメントを実行する
Example#1002 - 疑問符プレースホルダを用いてプリペアドステートメントを実行する
Example#1003 - INOUT パラメータを持つストアドプロシージャをコールする
Example#1004 - 名前付けされたプレースホルダを用いてプリペアドステートメントを実行する
Example#1005 - 疑問符プレースホルダを用いてプリペアドステートメントを実行する
Example#1006 - PDOStatement::closeCursor の例
Example#1007 - カラム数を数える
Example#1008 - 名前つきパラメータを用いた PDOStatement::debugDumpParams の例
Example#1009 - 名前なしパラメータを用いた PDOStatement::debugDumpParams の例
Example#1010 - SQLSTATE コードを取得する
Example#1011 - DB2 データベースに対する PDO_ODBC 接続の errorInfo() フィールドを表示する
Example#1012 - バインド変数を伴うプリペアドステートメントの実行
Example#1013 - 入力値の配列を伴うプリペアドステートメントの実行 (名前つきパラメータ)
Example#1014 - 入力値の配列を伴うプリペアドステートメントの実行 (プレースホルダ)
Example#1015 - 疑問符プレースホルダを伴うプリペアドステートメントの実行
Example#1016 - IN 句で配列を使うプリペアドステートメントの実行
Example#1017 - 異なる取得方法で行を取得する
Example#1018 - スクロール可能なカーソルで行を取得する
Example#1019 - 結果セットに残っている全ての行をフェッチする
Example#1020 - 結果セットから単一カラムの全ての値を取得する
Example#1021 - 単一カラムによる全ての値のグループ化
Example#1022 - 各結果用のクラスのインスタンス作成
Example#1023 - 各結果に対する関数コール
Example#1024 - 次行の最初のカラムを返す
Example#1025 - カラムのメタデータを取得する
Example#1026 - ストアドプロシージャから複数の行セットをフェッチする
Example#1027 - 削除された行数を返す
Example#1028 - SELECT 文によって返された行をカウントする
Example#1029 - フェッチモードを設定する
Example#1030 - CUBRID PDO での LOB の追加
Example#1031 - CUBRID PDO での LOB の取得
Example#1032 - PDO_CUBRID DSN の例
Example#1033 - PDO::cubrid_schema の例
Example#1034 - PDO_DBLIB DSN の例
Example#1035 - PDO_FIREBIRD DSN の例
Example#1036 - db2cli.ini を使用した PDO_IBM DSN の例
Example#1037 - 接続文字列を使用した PDO_IBM DSN の例
Example#1038 - odbc.ini を使用した PDO_INFORMIX DSN の例
Example#1039 - 接続文字列を使用した PDO_INFORMIX DSN の例
Example#1040 - mysql でクエリのバッファリングを強制する
Example#1041 - PHP 5.3.6 より前のバージョンで、文字セットを UTF-8 に設定する例
Example#1042 - PDO_MYSQL DSN の例
Example#1043 - PDO_SQLSRV DSN の例
Example#1044 - PDO_OCI DSN の例
Example#1045 - PDO_ODBC DSN の例 (ODBC ドライバマネージャ)
Example#1046 - PDO_ODBC DSN の例 (IBM DB2 非カタログ接続)
Example#1047 - PDO_ODBC DSN の例 (Microsoft Access 非カタログ接続)
Example#1048 - PDO_PGSQL DSN の例
Example#1049 - PDO::pgsqlLOBCreate の例
Example#1050 - PDO::pgsqlLOBOpen の例
Example#1051 - PDO::pgsqlLOBUnlink の例
Example#1052 - PDO_SQLITE DSN の例
Example#1053 - 集約関数 max_length の例
Example#1054 - PDO::sqliteCreateFunction の例
Example#1055 - PDO_4D の DSN の例
Example#1056 - PDO_4D の基本例
Example#1057 - pdo_4d からの 4D 言語へのアクセス
Example#1058 - 4D テーブル名のエスケープ
Example#1059 - Example of Data Retrieval
Example#1060 - Example of Data Insertion
Example#1061 - cubrid_bind example
Example#1062 - cubrid_bind BLOB/CLOB example
Example#1063 - cubrid_bind BLOB/CLOB example
Example#1064 - cubrid_close_prepare example
Example#1065 - cubrid_close_request example
Example#1066 - cubrid_col_get example
Example#1067 - cubrid_col_size example
Example#1068 - cubrid_column_names example
Example#1069 - cubrid_column_types example
Example#1070 - cubrid_commit example
Example#1071 - cubrid_connect_with_url url without properties example
Example#1072 - cubrid_connect_with_url url with properties example
Example#1073 - cubrid_connect example
Example#1074 - cubrid_current_oid example
Example#1075 - cubrid_disconnect example
Example#1076 - cubrid_drop example
Example#1077 - cubrid_error_code_facility example
Example#1078 - cubrid_error_code example
Example#1079 - cubrid_error_msg example
Example#1080 - cubrid_execute example
Example#1081 - cubrid_fetch example
Example#1082 - cubrid_free_result example
Example#1083 - cubrid_get_charset example
Example#1084 - cubrid_get_class_name example
Example#1085 - cubrid_get_client_info example
Example#1086 - cubrid_get_db_parameter example
Example#1087 - cubrid_get_query_timeout example
Example#1088 - cubrid_get_server_info example
Example#1089 - cubrid_get example
Example#1090 - cubrid_insert_id example
Example#1091 - cubrid_is_instance example
Example#1092 - cubrid_lob_close example
Example#1093 - cubrid_lob_export example
Example#1094 - cubrid_lob_get example
Example#1095 - cubrid_lob_send example
Example#1096 - cubrid_lob_size example
Example#1097 - cubrid_lob2_bind example
Example#1098 - cubrid_lob2_export example
Example#1099 - cubrid_lob2_export example
Example#1100 - cubrid_lob2_read example 1
Example#1101 - cubrid_lob2_read example 2
Example#1102 - cubrid_lob2_seek64 example
Example#1103 - cubrid_lob2_seek example
Example#1104 - cubrid_lob2_write example 1
Example#1105 - cubrid_lob2_write example 2
Example#1106 - cubrid_lock_read example
Example#1107 - cubrid_lock_write example
Example#1108 - cubrid_move_cursor example
Example#1109 - cubrid_next_result example
Example#1110 - cubrid_num_cols example
Example#1111 - cubrid_num_rows example
Example#1112 - cubrid_connect_with_url url without properties example
Example#1113 - cubrid_connect_with_url url with properties example
Example#1114 - cubrid_connect example
Example#1115 - cubrid_prepare example
Example#1116 - cubrid_put example
Example#1117 - cubrid_rollback example
Example#1118 - cubrid_schema example
Example#1119 - cubrid_seq_drop example
Example#1120 - cubrid_seq_insert example
Example#1121 - cubrid_seq_put example
Example#1122 - cubrid_set_add example
Example#1123 - cubrid_get_db_parameter example
Example#1124 - cubrid_set_drop example
Example#1125 - cubrid_version example
Example#1126 - cubrid_affected_rows example
Example#1127 - cubrid_client_encoding example
Example#1128 - cubrid_close example
Example#1129 - cubrid_data_seek example
Example#1130 - cubrid_db_name example
Example#1131 - cubrid_errno example
Example#1132 - cubrid_error example
Example#1133 - cubrid_fetch_array example
Example#1134 - cubrid_fetch_assoc example
Example#1135 - cubrid_fetch_field example
Example#1136 - cubrid_fetch_lengths example
Example#1137 - cubrid_fetch_object example
Example#1138 - cubrid_fetch_row example
Example#1139 - cubrid_field_flags example
Example#1140 - cubrid_field_len example
Example#1141 - cubrid_field_name example
Example#1142 - cubrid_field_seek example
Example#1143 - cubrid_field_table example
Example#1144 - cubrid_field_type example
Example#1145 - cubrid_list_dbs example
Example#1146 - cubrid_num_fields example
Example#1147 - cubrid_ping example
Example#1148 - Invalid Query
Example#1149 - Valid Query
Example#1150 - cubrid_real_escape_string example
Example#1151 - cubrid_result example
Example#1152 - cubrid_unbuffered_query example
Example#1153 - cubrid_load_from_glo example
Example#1154 - cubrid_new_glo example
Example#1155 - cubrid_save_to_glo example
Example#1156 - cubrid_send_glo example
Example#1157 - dBase データベースにレコードを追加する
Example#1158 - dBase データベースファイルを閉じる
Example#1159 - dBase データベースファイルの作成
Example#1160 - dBase データベースファイルの情報の表示
Example#1161 - データベースに登録されているメンバの一覧表示
Example#1162 - dbase_numfields の例
Example#1163 - データベースの全レコードをループする
Example#1164 - dBase データベースファイルのオープン
Example#1165 - dBase データベースを空にする
Example#1166 - データベースのレコードの更新
Example#1167 - ibase_blob_get の例
Example#1168 - ibase_blob_import の例
Example#1169 - ibase_connect の例
Example#1170 - ibase_execute の例
Example#1171 - ibase_fetch_object の例
Example#1172 - ibase_field_info の例
Example#1173 - ibase_name_result の例
Example#1174 - ibase_num_fields の例
Example#1175 - ibase_query の例
Example#1176 - ibase_set_event_handler の例
Example#1177 - ibase_timefmt の例
Example#1178 - fbsql_close の例
Example#1179 - fbsql_connect の例
Example#1180 - fbsql_create_blob の例
Example#1181 - fbsql_create_clob の例
Example#1182 - fbsql_create_db の例
Example#1183 - fbsql_data_seek の例
Example#1184 - fbsql_create_clob の例
Example#1185 - fbsql_errno の例
Example#1186 - fbsql_error の例
Example#1187 - fbsql_fetch_array の例
Example#1188 - fbsql_fetch_assoc の例
Example#1189 - fbsql_fetch_field の例
Example#1190 - fbsql_fetch_object の例
Example#1191 - fbsql_field_name の例
Example#1192 - fbsql_field_type の例
Example#1193 - fbsql_list_dbs の例
Example#1194 - fbsql_list_fields の例
Example#1195 - fbsql_next_result の例
Example#1196 - fbsql_num_rows の例
Example#1197 - fbsql_query の例
Example#1198 - fbsql_query の例
Example#1199 - fbsql_read_blob の例
Example#1200 - fbsql_read_clob の例
Example#1201 - fbsql_table_name の例
Example#1202 - 接続の AUTOCOMMIT 値の取得
Example#1203 - 接続の AUTOCOMMIT 値の設定
Example#1204 - PHP 変数をプリペアドステートメントにバインドする
Example#1205 - IN および OUT パラメータを使用したストアドプロシージャのコール
Example#1206 - バイナリラージオブジェクト (BLOB) をファイルから直接挿入する
Example#1207 - db2_client_info の例
Example#1208 - 接続を閉じる
Example#1209 - 失敗した接続試行からの SQLSTATE の取得
Example#1210 - 失敗した接続試行からのエラーメッセージの取得
Example#1211 - カタログ接続の作成
Example#1212 - 非カタログ接続の作成
Example#1213 - 自動コミットをデフォルトで無効にした接続の作成
Example#1214 - i5/OS best performance
Example#1215 - 信頼済みコンテキストの使用
Example#1216 - db2_escape_string の例
Example#1217 - db2_exec でのテーブルの作成
Example#1218 - スクロール可能なカーソルでの SELECT 文の実行
Example#1219 - XML データを SQL の結果セットとして返す
Example#1220 - XML データの "JOIN"
Example#1221 - 大きな XML ドキュメントの一部を SQL データとして返す
Example#1222 - パラメータマーカを使用した SQL 文の準備と実行
Example#1223 - OUT パラメータを使用したストアドプロシージャのコール
Example#1224 - XML データを SQL の結果セットとして返す
Example#1225 - XML データの "JOIN"
Example#1226 - 大きな XML ドキュメントの一部を SQL データとして返す
Example#1227 - 前進のみのカーソルを使用して順に処理する
Example#1228 - スクロール可能なカーソルから、指定した行を db2_fetch_array で取得する
Example#1229 - 前進のみのカーソルを使用して順に処理する
Example#1230 - スクロール可能なカーソルから、指定した行を db2_fetch_assoc で取得する
Example#1231 - 前進のみのカーソルを使用して順に処理する
Example#1232 - スクロール可能なカーソルから、指定した行を db2_fetch_both で取得する
Example#1233 - db2_fetch_object の例
Example#1234 - 結果セットを順に処理する
Example#1235 - i5/OS recommended alternatives to db2_fetch_row/db2_result
Example#1236 - 接続リソースのパラメータの設定および取得
Example#1237 - db2_last_insert_id の例
Example#1238 - さまざまな型のデータの取得
Example#1239 - 複数の結果セットを返すストアドプロシージャをコールする
Example#1240 - 結果セットのフィールド数の取得
Example#1241 - 持続的接続の終了
Example#1242 - db2_pconnect の例
Example#1243 - 信頼済みコンテキストの使用
Example#1244 - パラメータマーカを使用した SQL 文の準備と実行
Example#1245 - db2_result の例
Example#1246 - DELETE 文のロールバック
Example#1247 - db2_server_info の例
Example#1248 - 接続リソースにひとつのパラメータを設定する
Example#1249 - 接続リソースに複数のパラメータを設定する
Example#1250 - 複数のパラメータを間違ったキーで設定する
Example#1251 - 複数のパラメータを間違った値で設定する
Example#1252 - 複数のパラメータを接続リソースに設定する (間違った型を指定する)
Example#1253 - 複数のパラメータを間違ったリソースに設定する
Example#1254 - すべてひとつにまとめる
Example#1255 - i5/OS カーソルは読み込み専用
Example#1256 - Informix で変更された行
Example#1257 - Informix 接続を閉じる
Example#1258 - Informix データベースへの接続
Example#1259 - ifx_do の例
Example#1260 - ifx_errormsg の例
Example#1261 - Informix 行の取得
Example#1262 - Informix SQL フィールドプロパティ
Example#1263 - フィールド名および SQL フィールド型
Example#1264 - Informix sqlca.sqlerrd[x] の値を取得する
Example#1265 - Informix 結果を HTML テーブルとして出力する
Example#1266 - ifx_num_fields の例
Example#1267 - "orders" テーブルの全行を HTML テーブルとして表示する
Example#1268 - 値を "catalog" テーブルに挿入する
Example#1269 - Ingres 用の PassEnv の使用例
Example#1270 - シンプルな Ingres の例
Example#1271 - ingres_charset - 導入している文字セットの取得
Example#1272 - Ingres データベースへの接続のオープン
Example#1273 - クエリリソースのカーソル名の取得
Example#1274 - 直近の Ingres エラー番号の取得
Example#1275 - 直近のエラーメッセージの取得
Example#1276 - 直近の SQLSTATE エラーコードの取得
Example#1277 - クエリで使うための特殊文字のエスケープ
Example#1278 - 配列への結果の行の取得
Example#1279 - 連想配列への行の取得
Example#1280 - オブジェクトへの行の取得
Example#1281 - プロシージャコールの返り値の取得
Example#1282 - クエリの結果からの行の取得
Example#1283 - 結果リソースの解放
Example#1284 - 単純な select の送信
Example#1285 - ingres_query へクエリパラメータを渡す
Example#1286 - パラメータの型を指定した BLOB の挿入
Example#1287 - 3 行目へのカーソルの移動
Example#1288 - date_format を ISO4 に設定する例
Example#1289 - タイムゾーンを HONG-KONG に設定する例
Example#1290 - シンプルな未バッファ select 文の発行
Example#1291 - ingres_unbuffered_query へのクエリパラメータのパース
Example#1292 - BLOB 型のパラメータの挿入
Example#1293 - MaxDB 拡張モジュールの概要
Example#1294 - SELECT INTO 文の使用例
Example#1295 - データベースプロシージャの使用
Example#1296 - オブジェクト指向型
Example#1297 - 手続き型
Example#1298 - オブジェクト指向型
Example#1299 - 手続き型
Example#1300 - オブジェクト指向型
Example#1301 - 手続き型
Example#1302 - オブジェクト指向型
Example#1303 - 手続き型
Example#1304 - オブジェクト指向型
Example#1305 - 手続き型
Example#1306 - maxdb_connect_errno の例
Example#1307 - maxdb_connect_error の例
Example#1308 - オブジェクト指向型
Example#1309 - 手続き型
Example#1310 - オブジェクト指向型
Example#1311 - 手続き型
Example#1312 - 手続き型
Example#1313 - オブジェクト指向型
Example#1314 - 手続き型
Example#1315 - オブジェクト指向型
Example#1316 - 手続き型
Example#1317 - オブジェクト指向型
Example#1318 - 手続き型
Example#1319 - オブジェクト指向型
Example#1320 - 手続き型
Example#1321 - オブジェクト指向型
Example#1322 - 手続き型
Example#1323 - オブジェクト指向型
Example#1324 - 手続き型
Example#1325 - オブジェクト指向型
Example#1326 - 手続き型
Example#1327 - オブジェクト指向型
Example#1328 - 手続き型
Example#1329 - オブジェクト指向型
Example#1330 - 手続き型
Example#1331 - オブジェクト指向型
Example#1332 - 手続き型
Example#1333 - オブジェクト指向型
Example#1334 - 手続き型
Example#1335 - オブジェクト指向型
Example#1336 - 手続き型
Example#1337 - オブジェクト指向型
Example#1338 - 手続き型
Example#1339 - maxdb_get_client_info
Example#1340 - maxdb_get_client_version
Example#1341 - オブジェクト指向型
Example#1342 - 手続き型
Example#1343 - オブジェクト指向型
Example#1344 - 手続き型
Example#1345 - オブジェクト指向型
Example#1346 - 手続き型
Example#1347 - オブジェクト指向型
Example#1348 - 手続き型
Example#1349 - オブジェクト指向型
Example#1350 - 手続き型
Example#1351 - オブジェクト指向型
Example#1352 - 手続き型
Example#1353 - オブジェクト指向型
Example#1354 - 手続き型
Example#1355 - オブジェクト指向型
Example#1356 - 手続き型
Example#1357 - オブジェクト指向型
Example#1358 - 手続き型
Example#1359 - オブジェクト指向型
Example#1360 - 手続き型
Example#1361 - オブジェクト指向型
Example#1362 - 手続き型
Example#1363 - オブジェクト指向型
Example#1364 - 手続き型
Example#1365 - オブジェクト指向型
Example#1366 - 手続き型
Example#1367 - オブジェクト指向型
Example#1368 - 手続き型
Example#1369 - オブジェクト指向型
Example#1370 - 手続き型
Example#1371 - 手続き型
Example#1372 - オブジェクト指向型
Example#1373 - 手続き型
Example#1374 - オブジェクト指向型
Example#1375 - 手続き型
Example#1376 - オブジェクト指向型
Example#1377 - 手続き型
Example#1378 - オブジェクト指向型
Example#1379 - 手続き型
Example#1380 - オブジェクト指向型
Example#1381 - 手続き型
Example#1382 - オブジェクト指向型
Example#1383 - 手続き型
Example#1384 - 手続き型 (SELECT INTO)
Example#1385 - 手続き型 (DB プロシージャ)
Example#1386 - オブジェクト指向型 (拡張構文)
Example#1387 - オブジェクト指向型
Example#1388 - 手続き型
Example#1389 - オブジェクト指向型
Example#1390 - 手続き型
Example#1391 - オブジェクト指向型
Example#1392 - 手続き型
Example#1393 - オブジェクト指向型
Example#1394 - 手続き型
Example#1395 - オブジェクト指向型
Example#1396 - 手続き型
Example#1397 - オブジェクト指向型
Example#1398 - 手続き型
Example#1399 - オブジェクト指向型
Example#1400 - 手続き型
Example#1401 - オブジェクト指向型
Example#1402 - 手続き型
Example#1403 - オブジェクト指向型
Example#1404 - 手続き型
Example#1405 - オブジェクト指向型
Example#1406 - 手続き型
Example#1407 - オブジェクト指向型
Example#1408 - 手続き型
Example#1409 - オブジェクト指向型
Example#1410 - 手続き型
Example#1411 - オブジェクト指向型
Example#1412 - 手続き型
Example#1413 - オブジェクト指向型
Example#1414 - 手続き型
Example#1415 - オブジェクト指向型
Example#1416 - 手続き型
Example#1417 -
Example#1418 -
Example#1419 -
Example#1420 -
Example#1421 -
Example#1422 -
Example#1423 -
Example#1424 -
Example#1425 -
Example#1426 -
Example#1427 -
Example#1428 -
Example#1429 -
Example#1430 -
Example#1431 -
Example#1432 - 接続 URI でのクエリ文字列構文による優先読み込みの設定
Example#1433 - タグセット用の配列構文による優先読み込みの設定
Example#1434 - 確認なしの書き込みの後に確認付き書き込みを続ける例
Example#1435 - 確認付き書き込み
Example#1436 - 過半数の確認付き書き込み
Example#1437 - 確認付きジャーナル書き込み
Example#1438 - "admin" データベースに対する認証
Example#1439 - 通常のデータベースに対する認証
Example#1440 - レプリカセットのシードリスト
Example#1441 -
Example#1442 -
Example#1443 -
Example#1444 -
Example#1445 -
Example#1446 - データベースレベルからカーソルへの優先読み込みの継承
Example#1447 -
Example#1448 -
Example#1449 -
Example#1450 -
Example#1451 -
Example#1452 -
Example#1453 -
Example#1454 - MongoClient の基本的な使いかた
Example#1455 - MongoClient::close の例
Example#1456 - Mongo::__construct でのレプリカセットの例
Example#1457 - ドメインソケットへの接続
Example#1458 - Mongo::__construct での認証の例
Example#1459 - Mongo::__construct での優先読み込みの例
Example#1460 - MongoClient::getConnections の例
Example#1461 - MongoClient::getReadPreference の返り値の例
Example#1462 - Mongo::listDBs の例
Example#1463 - Mongo::selectCollection の例
Example#1464 - MongoClient::setReadPreference タグセット配列構文の例
Example#1465 - データベースの選択
Example#1466 - MongoDB::command による "distinct" の例
Example#1467 - MongoDB::command での "distinct" の例
Example#1468 - MongoDB::command での MapReduce の例
Example#1469 - MongoDB::createCollection での固定サイズコレクションの例
Example#1470 - MongoDB::createDBRef の例
Example#1471 - MongoDB::createDBRef の例
Example#1472 - MongoDB::drop の例
Example#1473 - 単純な MongoDB::execute の例
Example#1474 - パラメータつきの MongoDB::execute の例
Example#1475 - スコープの例
Example#1476 - MongoDB::getCollectionNames の例
Example#1477 - MongoDB::getDBRef の例
Example#1478 - MongoDB::getGridFS の例
Example#1479 - MongoDB::getReadPreference の返り値の例
Example#1480 - MongoDB::lastError の NULL の例
Example#1481 - MongoDB::lastError のキー重複の例
Example#1482 - MongoDB::listCollections の例
Example#1483 - MongoDB::repair の例
Example#1484 - MongoDB::setReadPreference タグセット配列構文の例
Example#1485 - MongoCollection::aggregate の例
Example#1486 - MongoCollection::aggregate の例
Example#1487 - MongoCollection::aggregate の例
Example#1488 - MongoCollection::batchInsert の例
Example#1489 - MongoCollection::batchInsert でエラーを無視する例
Example#1490 - MongoCollection::count の例
Example#1491 - MongoCollection::createDBRef の例
Example#1492 - MongoCollection::deleteIndex の例
Example#1493 - MongoCollection::deleteIndexes の例
Example#1494 - MongoCollection::distinct の例
Example#1495 - 埋め込みドキュメントでの MongoCollection::distinct の例
Example#1496 - MongoCollection::drop の例
Example#1497 - MongoCollection::ensureIndex の例
Example#1498 - 重複を削除する例
Example#1499 - 地理空間のインデックス
Example#1500 - MongoCollection::find の例
Example#1501 - MongoCollection::find の例
Example#1502 - MongoCollection::find での $where の使用例
Example#1503 - MongoCollection::find での $in の使用例
Example#1504 - 配列形式での結果の取得
Example#1505 - MongoCollection::findAndModify の例
Example#1506 - MongoCollection::findAndModify のエラー処理
Example#1507 - MongoCollection::findOne での id による検索
Example#1508 - MongoCollection::findOne での複数条件の使用
Example#1509 - MongoCollection::getDBRef の例
Example#1510 - MongoCollection::getIndexInfo の例
Example#1511 - MongoCollection::getName の例
Example#1512 - MongoCollection::getReadPreference の返り値の例
Example#1513 - MongoCollection::group の例
Example#1514 - MongoCollection::group の例
Example#1515 - keys へ関数を渡す
Example#1516 - MongoCollection::insert の _id の例
Example#1517 - MongoCollection::insert での確認つき書き込みの例
Example#1518 - MongoCollection::remove で justOne を使う例
Example#1519 - MongoCollection::save の例
Example#1520 - MongoCollection::setReadPreference タグセット配列構文の例
Example#1521 - MongoCollection::toIndexString の例
Example#1522 - MongoCollection::__toString の例
Example#1523 - MongoCollection::update
Example#1524 - MongoCollection::update での upsert
Example#1525 - MongoCollection::update での複数更新
Example#1526 - MongoCursor の基本的な使いかた
Example#1527 - MongoCursor の反復処理
Example#1528 - MongoCursor へのオプションの追加
Example#1529 - MongoCursor::addOption の例
Example#1530 - MongoCursor::awaitData の例
Example#1531 - MongoCursor::batchSize を MongoCursor::limit と組み合わせる例
Example#1532 - MongoCursor::count の例
Example#1533 - MongoCursor::doQuery の例
Example#1534 - MongoCursor::explain の例
Example#1535 - MongoCursor::getReadPreference の返り値の例
Example#1536 - MongoCursor::info の例
Example#1537 - MongoCursor::setFlag の例
Example#1538 - MongoCursor::setReadPreference タグセット配列構文の例
Example#1539 - MongoCursor::slaveOkay の例
Example#1540 - MongoCursor::sort の例
Example#1541 - MongoCursor::tailable の例
Example#1542 - MongoCursor::timeout の例
Example#1543 - MongoId::__construct example
Example#1544 - パラメータの例
Example#1545 - MongoId::__toString の例
Example#1546 - MongoCode::__construct の例
Example#1547 - MongoCode での $where の使用例
Example#1548 - MongoCode::__toString の例
Example#1549 - MongoDate による日付の保存
Example#1550 - MongoDate::__construct の例
Example#1551 - MongoRegex::__construct の例
Example#1552 - MongoRegex::__toString の例
Example#1553 -
Example#1554 - ドキュメントのリンク
Example#1555 - MongoDBRef リンクの作成
Example#1556 - MongoDBRef::create の例
Example#1557 - MongoCollection::createDBRef の例
Example#1558 - MongoGridFS::findOne の例
Example#1559 - MongoGridFS::storeBytes でのメタデータの追加
Example#1560 - MongoGridFS::storeFile でのメタデータの追加
Example#1561 - MongoGridFS::storeUpload を使った HTML フォームの例
Example#1562 - MongoGridFSFile::getBytes の例
Example#1563 - MongoGridFSFile::getResource の例
Example#1564 - MongoGridFSFile::write の例
Example#1565 - MongoLog::setCallback の例
Example#1566 - プールサイズの変更
Example#1567 - Mongo::setPoolSize の例
Example#1568 - プールサイズの変更
Example#1569 - Mongo::setPoolSize の例
Example#1570 - mSQL の使用例
Example#1571 - msql_fetch_array の例
Example#1572 - msql_fetch_object の例
Example#1573 - msql_fetch_row の例
Example#1574 - msql_query の例
Example#1575 - mssql_bind の例
Example#1576 - mssql_close example
Example#1577 - mssql_connect の例
Example#1578 - mssql_data_seek の例
Example#1579 - mssql_execute の例
Example#1580 - mssql_fetch_array の例
Example#1581 - mssql_fetch_assoc の例
Example#1582 - mssql_fetch_batch の例
Example#1583 - mssql_fetch_field の例
Example#1584 - mssql_fetch_object の例
Example#1585 - mssql_fetch_row の例
Example#1586 - mssql_field_length の例
Example#1587 - mssql_field_name の例
Example#1588 - mssql_fetch_field の例での mssql_field_seek の使用法
Example#1589 - mssql_field_type の例
Example#1590 - mssql_free_result の例
Example#1591 - mssql_free_statement の例
Example#1592 - mssql_get_last_message の例
Example#1593 - mssql_guid_string の例
Example#1594 - mssql_init の例
Example#1595 - mssql_min_error_severity の例
Example#1596 - mssql_min_message_severity の例
Example#1597 - mssql_next_result の例
Example#1598 - mssql_num_fields の例
Example#1599 - mssql_num_rows の例
Example#1600 - mssql_pconnect で new_link を使う例
Example#1601 - mssql_query の例
Example#1602 - mssql_result の例
Example#1603 - 上の例をより高速化したもの
Example#1604 - mssql_rows_affected の例
Example#1605 - mssql_select_db の例
Example#1606 - 角括弧によるデータベース名のエスケープ
Example#1607 - 三種類の MySQL 用 API の比較
Example#1608 - mysqlnd あるいは libmysql を使う場合の configure コマンド
Example#1609 - 非バッファクエリの例: mysqli
Example#1610 - 非バッファクエリの例: pdo_mysql
Example#1611 - 非バッファクエリの例: mysql
Example#1612 - 文字セットを SQL で指定することによる問題
Example#1613 - 文字セットの設定: mysqli
Example#1614 - 文字セットの設定: pdo_mysql
Example#1615 - 文字セットの設定: mysql
Example#1616 - MySQL 拡張モジュールに関する例
Example#1617 - mysql_affected_rows の例
Example#1618 - トランザクションを利用した mysql_affected_rows の例
Example#1619 - mysql_client_encoding の例
Example#1620 - mysql_close の例
Example#1621 - mysql_connect の例
Example#1622 - mysql_connect で hostname:port 構文を使用する例
Example#1623 - mysql_connect で ":/path/to/socket" 構文を使用する例
Example#1624 - mysql_create_db の別の例
Example#1625 - mysql_data_seek の例
Example#1626 - mysql_db_name の例
Example#1627 - mysql_db_query の別の例
Example#1628 - mysql_drop_db の別の例
Example#1629 - mysql_errno の例
Example#1630 - mysql_error の例
Example#1631 - mysql_escape_string の例
Example#1632 - 重複した列名に対して別名を定義する問い合わせ
Example#1633 - mysql_fetch_array を MYSQL_NUM とともに利用する
Example#1634 - mysql_fetch_array を MYSQL_ASSOC とともに利用する
Example#1635 - mysql_fetch_array を MYSQL_BOTH とともに利用する
Example#1636 - mysql_fetch_assoc のいろいろな例
Example#1637 - mysql_fetch_field の例
Example#1638 - mysql_fetch_lengths の例
Example#1639 - mysql_fetch_object の例
Example#1640 - mysql_fetch_object の例
Example#1641 - mysql_fetch_row で行を取得する
Example#1642 - mysql_field_flags の例
Example#1643 - mysql_field_len の例
Example#1644 - mysql_field_name の例
Example#1645 - mysql_field_table の例
Example#1646 - mysql_field_type の例
Example#1647 - mysql_free_result の例
Example#1648 - mysql_get_client_info の例
Example#1649 - mysql_get_host_info の例
Example#1650 - mysql_get_proto_info の例
Example#1651 - mysql_get_server_info の例
Example#1652 - 該当する MySQL 文
Example#1653 - mysql_insert_id の例
Example#1654 - mysql_list_dbs の例
Example#1655 - 非推奨である mysql_list_fields の代替例
Example#1656 - mysql_list_processes の例
Example#1657 - mysql_list_tables の別の例
Example#1658 - mysql_num_fields の例
Example#1659 - mysql_num_rows の例
Example#1660 - mysql_ping の例
Example#1661 - 間違ったクエリ
Example#1662 - 正しいクエリ
Example#1663 - 単純な mysql_real_escape_string の例
Example#1664 - SQL インジェクション攻撃の例
Example#1665 - mysql_result の例
Example#1666 - mysql_select_db の例
Example#1667 - mysql_stat の例
Example#1668 - mysql_stat の別の例
Example#1669 - mysql_tablename の例
Example#1670 - mysql_thread_id の例
Example#1671 - Easy migration from the old mysql extension
Example#1672 - Object-oriented and procedural interface
Example#1673 - Bad coding style
Example#1674 - Special meaning of localhost
Example#1675 - Setting defaults
Example#1676 - Connecting to MySQL
Example#1677 - Navigation through buffered results
Example#1678 - Navigation through unbuffered results
Example#1679 - Text protocol returns strings by default
Example#1680 - Native data types with mysqlnd and connection option
Example#1681 - First stage: prepare
Example#1682 - Second stage: bind and execute
Example#1683 - INSERT prepared once, executed multiple times
Example#1684 - Less round trips using multi-INSERT SQL
Example#1685 - Native datatypes
Example#1686 - Output variable binding
Example#1687 - Using mysqli_result to fetch results
Example#1688 - Buffered result set for flexible read out
Example#1689 - Calling a stored procedure
Example#1690 - Using session variables
Example#1691 - Fetching results from stored procedures
Example#1692 - Stored Procedures and Prepared Statements
Example#1693 - Stored Procedures and Prepared Statements using bind API
Example#1694 - Multiple Statements
Example#1695 - SQL Injection
Example#1696 - Setting auto commit mode with SQL and through the API
Example#1697 - Commit and rollback
Example#1698 - Accessing result set meta data
Example#1699 - Prepared statements metadata
Example#1700 - $mysqli->affected_rows の例
Example#1701 - mysqli::autocommit の例
Example#1702 - mysqli::change_user の例
Example#1703 - mysqli::character_set_name の例
Example#1704 - mysqli_get_client_info
Example#1705 - mysqli_get_client_version
Example#1706 - mysqli::commit の例
Example#1707 - $mysqli->connect_errno の例
Example#1708 - $mysqli->connect_error の例
Example#1709 - mysqli::__construct の例
Example#1710 - トレースファイルの作成
Example#1711 - $mysqli->errno の例
Example#1712 - $mysqli->error_list の例
Example#1713 - $mysqli->error の例
Example#1714 - $mysqli->field_count の例
Example#1715 - mysqli::get_charset の例
Example#1716 - mysqli_get_client_info
Example#1717 - mysqli_get_client_stats の例
Example#1718 - mysqli_get_client_version
Example#1719 - mysqli_get_connection_stats の例
Example#1720 - $mysqli->host_info の例
Example#1721 - $mysqli->protocol_version の例
Example#1722 - $mysqli->server_info の例
Example#1723 - $mysqli->server_version の例
Example#1724 - $mysqli->info の例
Example#1725 - $mysqli->insert_id の例
Example#1726 - mysqli::kill の例
Example#1727 - mysqli::multi_query の例
Example#1728 - mysqli::ping の例
Example#1729 - mysqli_poll の例
Example#1730 - mysqli::prepare の例
Example#1731 - mysqli::query の例
Example#1732 - mysqli::real_connect の例
Example#1733 - mysqli::real_escape_string の例
Example#1734 - mysqli::rollback の例
Example#1735 - mysqli::select_db の例
Example#1736 - mysqli::set_charset の例
Example#1737 - mysqli::set_local_infile_handler の例
Example#1738 - $mysqli->sqlstate の例
Example#1739 - mysqli::stat の例
Example#1740 - $mysqli->thread_id の例
Example#1741 - mysqli::use_result の例
Example#1742 - $mysqli->warning_count の例
Example#1743 - オブジェクト指向型
Example#1744 - 手続き型
Example#1745 - オブジェクト指向型
Example#1746 - 手続き型
Example#1747 - オブジェクト指向型
Example#1748 - 手続き型
Example#1749 - オブジェクト指向型
Example#1750 - 手続き型
Example#1751 - オブジェクト指向型
Example#1752 - 手続き型
Example#1753 - オブジェクト指向型
Example#1754 - 手続き型
Example#1755 - オブジェクト指向型
Example#1756 - 手続き型
Example#1757 - オブジェクト指向型
Example#1758 - 手続き型
Example#1759 - オブジェクト指向型
Example#1760 - 手続き型
Example#1761 - オブジェクト指向型
Example#1762 - 手続き型
Example#1763 - オブジェクト指向型
Example#1764 - 手続き型
Example#1765 - オブジェクト指向型
Example#1766 - 手続き型
Example#1767 - オブジェクト指向型
Example#1768 - 手続き型
Example#1769 - オブジェクト指向型
Example#1770 - 手続き型
Example#1771 - オブジェクト指向型
Example#1772 - オブジェクト指向型
Example#1773 - 手続き型
Example#1774 - オブジェクト指向型
Example#1775 - 手続き型
Example#1776 - オブジェクト指向型
Example#1777 - 手続き型
Example#1778 - オブジェクト指向型
Example#1779 - 手続き型
Example#1780 - オブジェクト指向型
Example#1781 - 手続き型
Example#1782 - オブジェクト指向型
Example#1783 - 手続き型
Example#1784 - mysqli_result での iterator の使用法
Example#1785 - オブジェクト指向型
Example#1786 - 手続き型
Example#1787 - オブジェクト指向型
Example#1788 - 手続き型
Example#1789 - オブジェクト指向型
Example#1790 - 手続き型
Example#1791 - オブジェクト指向型
Example#1792 - 手続き型
Example#1793 - オブジェクト指向型
Example#1794 - 手続き型
Example#1795 - オブジェクト指向型
Example#1796 - 手続き型
Example#1797 - オブジェクト指向型
Example#1798 - 手続き型
Example#1799 - オブジェクト指向型
Example#1800 - 手続き型
Example#1801 - オブジェクト指向型
Example#1802 - 手続き型
Example#1803 - オブジェクト指向型
Example#1804 - 手続き型
Example#1805 - mysqli_get_cache_stats の例
Example#1806 - Enabling the plugin (php.ini)
Example#1807 - Minimal plugin-specific configuration file (mysqlnd_ms_plugin.ini)
Example#1808 - Recommended minimal plugin-specific config (mysqlnd_ms_plugin.ini)
Example#1809 - Using one server as a master and as a slave (testing only!)
Example#1810 - Plugin specific configuration file (mysqlnd_ms_plugin.ini)
Example#1811 - Opening a load balanced connection
Example#1812 - Executing statements
Example#1813 - Plugin config with one slave and one master
Example#1814 - Pitfall: connection state and SQL user variables
Example#1815 - Plugin config with one slave and one master
Example#1816 - SQL hints to prevent connection switches
Example#1817 - Fighting replication lag
Example#1818 - Table creation on a slave
Example#1819 - Plugin config with one slave and one master
Example#1820 - Using SQL hints for transactions
Example#1821 - Transaction aware load balancing: trx_stickiness setting
Example#1822 - Transaction aware
Example#1823 - Session consistency: read your writes
Example#1824 - Requesting session consistency
Example#1825 - Maximum age/slave lag
Example#1826 - Limiting slave lag
Example#1827 - Fail over not set
Example#1828 - No slave within time limit
Example#1829 - Create counter table on master
Example#1830 - Plugin config: SQL for client-side GTID injection
Example#1831 - Transparent global transaction ID injection
Example#1832 - Plugin config: SQL for fetching GTID
Example#1833 - Obtaining GTID after injection
Example#1834 - Plugin config: Checking for a certain GTID
Example#1835 - Session consistency service level and GTID combined
Example#1836 - Plugin config: using MySQL 5.6.5-m8 built-in GTID feature
Example#1837 - Recap: quality of service to request read your writes
Example#1838 - Plugin config: no special entries for caching
Example#1839 - Caching a slave request
Example#1840 - Read your writes and caching combined
Example#1841 - Manual failover, automatic optional
Example#1842 - Manual failover
Example#1843 - Provoking a connection error
Example#1844 - Connection error on query execution
Example#1845 - Provoking a connection error
Example#1846 - Most basic failover
Example#1847 - Converting a PHP array (hash) into JSON format
Example#1848 - Using section names example
Example#1849 - List of anonymous slaves
Example#1850 - Master list using symbolic names
Example#1851 - Keywords to configure a server
Example#1852 - New roundrobin filter, old functionality
Example#1853 - The user filter replaces mysqlnd_ms_set_user_pick_server
Example#1854 - Invalid filter sequence
Example#1855 - Random load balancing with random filter
Example#1856 - Random once load balancing with random filter
Example#1857 - Referencing error
Example#1858 - Assigning a weight for load balancing
Example#1859 - roundrobin filter
Example#1860 - Setting a callback
Example#1861 - Using a callback
Example#1862 - Returning random masters and slaves
Example#1863 - Global limit on slave lag
Example#1864 - Optional master failover when failing to connect to slave (PECL/mysqlnd_ms < 1.4.0)
Example#1865 - New syntax since 1.4.0
Example#1866 - Disabling lazy connection
Example#1867 - String escaping on a lazy connection handle
Example#1868 - Master on write for consistent reads
Example#1869 - Using master to execute transactions
Example#1870 - Using section names example
Example#1871 - List-like syntax
Example#1872 - Verify plugin activity in a non-threaded deployment model
Example#1873 - Recording statistics during shutdown
Example#1874 - Example demonstrating the usage of mysqlnd_ms constants
Example#1875 - mysqlnd_ms_get_last_gtid example
Example#1876 - mysqlnd_ms_get_last_used_connection example
Example#1877 - mysqlnd_ms_get_stats example
Example#1878 - mysqlnd_ms_match_wild example
Example#1879 - mysqlnd_ms_query_is_select example
Example#1880 - mysqlnd_ms_set_qos example
Example#1881 - mysqlnd_ms_set_user_pick_server example
Example#1882 - Enabling the plugin (php.ini)
Example#1883 - Using the MYSQLND_QC_ENABLE_SWITCH SQL hint
Example#1884 - Using the MYSQLND_QC_DISABLE_SWITCH SQL hint
Example#1885 - Example showing which type of statements are not cached
Example#1886 - Enabling caching for all statements using the mysqlnd_qc.cache_no_table ini setting
Example#1887 - Setting the TTL with the mysqlnd_qc.ttl ini setting
Example#1888 - Setting TTL with SQL hints
Example#1889 - Setting a callback with mysqlnd_qc_set_is_select
Example#1890 - Enabling the slam defense mechanism
Example#1891 - Collecting a query trace
Example#1892 - Setting the backtrace depth with the mysqlnd_qc.query_trace_bt_depth ini setting
Example#1893 - Collecting statistics data with the mysqlnd_qc.time_statistics ini setting
Example#1894 - Example mysqlnd_qc_get_cache_info usage
Example#1895 - Example mysqlnd_qc_get_normalized_query_trace_log usage
Example#1896 - Using a user-defined storage handler
Example#1897 - SQL ヒント定数の利用
Example#1898 - mysqlnd_qc_set_cache_condition の使用例
Example#1899 - mysqlnd_qc_get_available_handlers example
Example#1900 - mysqlnd_qc_get_cache_info example
Example#1901 - mysqlnd_qc_get_core_stats example
Example#1902 - mysqlnd_qc_get_normalized_query_trace_log example
Example#1903 - mysqlnd_qc_get_query_trace_log example
Example#1904 - mysqlnd_qc_set_cache_condition example
Example#1905 - mysqlnd_qc_set_is_select example
Example#1906 - mysqlnd_qc_set_storage_handler example
Example#1907 - Enabling the plugin (php.ini)
Example#1908 - Pseudo-code: what a built-in class does
Example#1909 - Installing a proxy
Example#1910 - Proxy registration, mysqlnd_uh.enable=1
Example#1911 - Proxy installation disabled
Example#1912 - Connection proxy
Example#1913 - Prepared statement proxy
Example#1914 - Basic Monitoring
Example#1915 - MysqlndUhConnection::changeUser example
Example#1916 - MysqlndUhConnection::charsetName example
Example#1917 - MysqlndUhConnection::close example
Example#1918 - MysqlndUhConnection::connect example
Example#1919 - MysqlndUhConnection::endPSession example
Example#1920 - MysqlndUhConnection::escapeString example
Example#1921 - MysqlndUhConnection::getAffectedRows example
Example#1922 - MysqlndUhConnection::getErrorNumber example
Example#1923 - MysqlndUhConnection::getErrorString example
Example#1924 - MysqlndUhConnection::getFieldCount example
Example#1925 - MysqlndUhConnection::getHostInformation example
Example#1926 - MysqlndUhConnection::getLastInsertId example
Example#1927 - MysqlndUhConnection::getLastMessage example
Example#1928 - MysqlndUhConnection::getProtocolInformation example
Example#1929 - MysqlndUhConnection::getServerInformation example
Example#1930 - MysqlndUhConnection::getServerStatistics example
Example#1931 - MysqlndUhConnection::getServerVersion example
Example#1932 - MysqlndUhConnection::getSqlstate example
Example#1933 - MysqlndUhConnection::getStatistics example
Example#1934 - MysqlndUhConnection::getThreadId example
Example#1935 - MysqlndUhConnection::getWarningCount example
Example#1936 - MysqlndUhConnection::init example
Example#1937 - MysqlndUhConnection::kill example
Example#1938 - MysqlndUhConnection::listFields example
Example#1939 - MysqlndUhConnection::listMethod example
Example#1940 - MysqlndUhConnection::moreResults example
Example#1941 - MysqlndUhConnection::nextResult example
Example#1942 - MysqlndUhConnection::ping example
Example#1943 - MysqlndUhConnection::query example
Example#1944 - MysqlndUhConnection::queryReadResultsetHeader example
Example#1945 - MysqlndUhConnection::reapQuery example
Example#1946 - MysqlndUhConnection::refreshServer example
Example#1947 - MysqlndUhConnection::restartPSession example
Example#1948 - MysqlndUhConnection::selectDb example
Example#1949 - MysqlndUhConnection::sendClose example
Example#1950 - MysqlndUhConnection::sendQuery example
Example#1951 - MysqlndUhConnection::serverDumpDebugInformation example
Example#1952 - MysqlndUhConnection::setAutocommit example
Example#1953 - MysqlndUhConnection::setCharset example
Example#1954 - MysqlndUhConnection::setClientOption example
Example#1955 - MysqlndUhConnection::setServerOption example
Example#1956 - MysqlndUhConnection::simpleCommand example
Example#1957 - MysqlndUhConnection::simpleCommandHandleResponse example
Example#1958 - MysqlndUhConnection::sslSet example
Example#1959 - MysqlndUhConnection::stmtInit example
Example#1960 - MysqlndUhConnection::storeResult example
Example#1961 - MysqlndUhConnection::txCommit example
Example#1962 - MysqlndUhConnection::txRollback example
Example#1963 - MysqlndUhConnection::useResult example
Example#1964 - MysqlndUhPreparedStatement::execute example
Example#1965 - MysqlndUhPreparedStatement::prepare example
Example#1966 - mysqlnd_uh_convert_to_mysqlnd example
Example#1967 - mysqlnd_uh_set_connection_proxy example
Example#1968 - プラグインを有効にする (php.ini)
Example#1969 - クイックスタートで使うテーブルの SQL
Example#1970 - 基本的な例
Example#1971 - mysqlnd_memcache_get_config の例
Example#1972 - mysqlnd_memcache_set で、 var_dump をデバッグ用コールバックとして使う例
Example#1973 - 基本的なクエリ
Example#1974 - バインド変数を用いた挿入
Example#1975 - CLOB カラムにデータを挿入する
Example#1976 - PL/SQL ストアドファンクションの使用
Example#1977 - PL/SQL ストアドプロシージャの使用
Example#1978 - REF CURSOR を返す PL/SQL ファンクションのコール
Example#1979 - oci_bind_array_by_name の例
Example#1980 - oci_bind_by_name によるデータの挿入
Example#1981 - 一度組み立てたものを複数回実行
Example#1982 - foreach ループでのバインド
Example#1983 - WHERE 句でのバインド
Example#1984 - LIKE 句でのバインド
Example#1985 - REGEXP_LIKE でのバインド
Example#1986 - IN 句での複数の値のバインド
Example#1987 - クエリが返す ROWID のバインド
Example#1988 - INSERT での ROWID のバインド
Example#1989 - PL/SQL ストアドファンクションでのバインド
Example#1990 - PL/SQL ストアドプロシージャでのパラメータのバインド
Example#1991 - CLOB 列のバインド
Example#1992 - oci_client_version の例
Example#1993 - 接続を閉じる
Example#1994 - 参照の全てが閉じられるまでデータベース接続は閉じられません
Example#1995 - 一回以上開かれた接続を閉じる
Example#1996 - 変数がスコープから外れると接続が閉じられます
Example#1997 - oci_commit の例
Example#1998 - Easy Connect 構文を使った基本的な oci_connect の使用例
Example#1999 - Network Connect 名を使った基本的な oci_connect の使用例
Example#2000 - oci_connect での明示的な文字セットの指定
Example#2001 - oci_connect での複数コールの使用
Example#2002 - oci_define_by_name の例
Example#2003 - oci_define_by_name での大文字小文字を区別するカラム名の使用
Example#2004 - oci_define_by_name での LOB カラムの使用
Example#2005 - oci_define_by_name での型の明示
Example#2006 - 接続エラー後の Oracle エラーメッセージの表示
Example#2007 - パースエラー時の Oracle エラーメッセージの表示
Example#2008 - 実行エラー時の、 Oracle エラーメッセージと問題となった文の表示
Example#2009 - oci_execute での問い合わせの例
Example#2010 - モードを指定せずに oci_execute を実行する例
Example#2011 - oci_execute で OCI_NO_AUTO_COMMIT を使う例
Example#2012 - oci_execute でさまざまなコミットモードを使う例
Example#2013 - oci_execute で OCI_DESCRIBE_ONLY を使う例
Example#2014 - oci_fetch_all の例
Example#2015 - oci_fetch_all で OCI_FETCHSTATEMENT_BY_ROW を使う例
Example#2016 - oci_fetch_all で OCI_NUM を使う例
Example#2017 - oci_fetch_array での OCI_BOTH の使用例
Example#2018 - oci_fetch_array での OCI_NUM の使用例
Example#2019 - oci_fetch_array での OCI_ASSOC の使用例
Example#2020 - oci_fetch_array での OCI_RETURN_NULLS の使用例
Example#2021 - oci_fetch_array での OCI_RETURN_LOBS の使用例
Example#2022 - oci_fetch_array での文字の大小を区別するカラムの使用例
Example#2023 - oci_fetch_array での同じ名前のカラムの使用例
Example#2024 - oci_fetch_array での DATE カラムの使用例
Example#2025 - oci_fetch_array での REF CURSOR の使用例
Example#2026 - oci_fetch_array での LIMIT 風のクエリの使用例
Example#2027 - oci_fetch_object の例
Example#2028 - 文字の大小を区別するカラム名を持つ oci_fetch_object
Example#2029 - LOB を持つ oci_fetch_object
Example#2030 - oci_fetch での定義済みの変数の使用
Example#2031 - oci_fetch と oci_result の使用例
Example#2032 - oci_field_name の例
Example#2033 - oci_field_size の例
Example#2034 - oci_field_type の例
Example#2035 - oci_new_connect の例
Example#2036 - Oracle ストアドプロシージャにおける REF CURSOR の使用例
Example#2037 - Oracle の select 文における REF CURSOR の使用例
Example#2038 - oci_new_descriptor の例
Example#2039 - oci_new_descriptor の例
Example#2040 - oci_num_fields の例
Example#2041 - oci_num_rows の例
Example#2042 - oci_parse での SQL 文の例
Example#2043 - oci_parse での PL/SQL の例
Example#2044 - oci_rollback の例
Example#2045 - SAVEPOINT へのロールバックの例
Example#2046 - oci_server_version の例
Example#2047 - アクションを設定する
Example#2048 - クライアント識別子をアプリケーションのユーザーに設定する
Example#2049 - クライアント情報を設定する
Example#2050 - 異なるバージョンの myfunc() が利用できる例
Example#2051 - モジュール名を設定する
Example#2052 - クエリのデフォルトプリフェッチ値の変更
Example#2053 - REF CURSOR のデフォルトプリフェッチの変更
Example#2054 - REF CURSOR を Oracle に戻すときのプリフェッチの設定
Example#2055 - oci_statement_type の例
Example#2056 - Ovrimos SQL サーバーに接続し、システムテーブルからデータを読み込む
Example#2057 - ovrimos_connect の例
Example#2058 - 取得の例
Example#2059 - 取得の例
Example#2060 - ovrimos_prepare の例
Example#2061 - 命令を準備、実行、結果を表示する
Example#2062 - メタ情報つきの ovrimos_result_all
Example#2063 - 2 つのフィールドを持つ Paradox データベースを作成する
Example#2064 - paradox の日付を人間が理解しやすい形式に変換する
Example#2065 - paradox データベースの日付/時刻フィールドに、現在の日付/時刻を設定する
Example#2066 - Paradox データベースをオープンする
Example#2067 - Paradox データベースをオープンする
Example#2068 - paradox のタイムスタンプを人間が理解しやすい形式に変換する
Example#2069 - PostgreSQL 拡張モジュールの概要
Example#2070 - pg_affected_rows の例
Example#2071 - pg_cancel_query の例
Example#2072 - pg_client_encoding の例
Example#2073 - pg_close の例
Example#2074 - pg_connect の使用法
Example#2075 - pg_connection_busy の例
Example#2076 - pg_connection_reset の例
Example#2077 - pg_connection_status の例
Example#2078 - pg_convert の例
Example#2079 - pg_copy_from の例
Example#2080 - pg_copy_to の例
Example#2081 - pg_dbname の例
Example#2082 - pg_delete の例
Example#2083 - pg_end_copy の例
Example#2084 - pg_escape_bytea の例
Example#2085 - pg_escape_identifier の例
Example#2086 - pg_escape_literal の例
Example#2087 - pg_escape_string の例
Example#2088 - pg_execute の使用法
Example#2089 - pg_fetch_all_columns の例
Example#2090 - PostgreSQL fetch all
Example#2091 - pg_fetch_array の例
Example#2092 - pg_fetch_assoc の例
Example#2093 - pg_fetch_object の例
Example#2094 - pg_fetch_result の例
Example#2095 - pg_fetch_row の例
Example#2096 - pg_field_is_null の例
Example#2097 - フィールド情報を取得する
Example#2098 - フィールドの情報を取得する
Example#2099 - フィールドの情報を取得する
Example#2100 - フィールドの情報を取得する
Example#2101 - フィールドについてのテーブル情報の取得
Example#2102 - フィールドの情報を得る
Example#2103 - フィールドの情報を取得する
Example#2104 - pg_free_result の例
Example#2105 - PostgreSQL NOTIFY メッセージ
Example#2106 - PostgreSQL バックエンドの PID
Example#2107 - pg_get_result の例
Example#2108 - pg_host の例
Example#2109 - pg_insert の例
Example#2110 - pg_last_error の例
Example#2111 - pg_last_notice の例
Example#2112 - pg_last_oid の例
Example#2113 - pg_lo_close example
Example#2114 - pg_lo_create の例
Example#2115 - pg_lo_export の例
Example#2116 - pg_lo_import の例
Example#2117 - pg_lo_open の例
Example#2118 - pg_lo_read_all の例
Example#2119 - pg_lo_read の例
Example#2120 - pg_lo_seek の例
Example#2121 - pg_lo_tell の例
Example#2122 - pg_lo_unlink の例
Example#2123 - pg_lo_write の例
Example#2124 - テーブルのメタデータを得る
Example#2125 - pg_num_fields の例
Example#2126 - pg_num_rows の例
Example#2127 - pg_options の例
Example#2128 - pg_parameter_status の例
Example#2129 - pg_pconnect の使用法
Example#2130 - pg_ping の例
Example#2131 - pg_port の例
Example#2132 - pg_prepare の使用法
Example#2133 - pg_put_line の例
Example#2134 - pg_query_params の使用法
Example#2135 - pg_query の例
Example#2136 - pg_query で複数の文を使用する例
Example#2137 - pg_result_error_field の例
Example#2138 - pg_result_error の例
Example#2139 - pg_result_seek の例
Example#2140 - pg_result_status の例
Example#2141 - pg_select の例
Example#2142 - pg_send_execute の使用法
Example#2143 - pg_send_prepare の使用法
Example#2144 - pg_send_query_params の使用法
Example#2145 - pg_send_query の例
Example#2146 - pg_set_client_encoding の例
Example#2147 - pg_set_error_verbosity の例
Example#2148 - pg_trace の例
Example#2149 - pg_transaction_status の例
Example#2150 - pg_tty の例
Example#2151 - pg_unescape_bytea の例
Example#2152 - pg_untrace の例
Example#2153 - pg_update の例
Example#2154 - pg_version の例
Example#2155 - 手続き型
Example#2156 - オブジェクト指向言語型スタイル
Example#2157 - 手続き型
Example#2158 - オブジェクト指向型
Example#2159 - 手続き型
Example#2160 - オブジェクト指向型
Example#2161 - sqlite_close の例
Example#2162 - max_length 集約関数の例
Example#2163 - sqlite_create_function の例
Example#2164 - PHP 関数の使用例
Example#2165 - 手続き型言語スタイルでの例
Example#2166 - オブジェクト指向言語型スタイルでの例
Example#2167 - sqlite_factory の例
Example#2168 - 手続き型言語スタイルでの例
Example#2169 - オブジェクト指向言語型スタイルでの例
Example#2170 - 手続き型言語スタイルでの例
Example#2171 - オブジェクト指向言語型スタイルでの例
Example#2172 - 手続き型言語スタイルでの例
Example#2173 - オブジェクト指向言語型スタイルでの例
Example#2174 - sqlite_fetch_single の例
Example#2175 - 手続き型言語スタイルでの例
Example#2176 - オブジェクト指向言語型スタイルでの例
Example#2177 - sqlite_open の例
Example#2178 - バイナリ対応 max_length 集約関数の例
Example#2179 - SQLite3::changes の例
Example#2180 - SQLite3::close の例
Example#2181 - SQLite3::__construct の例
Example#2182 - SQLite3::createFunction の例
Example#2183 - SQLite3::exec の例
Example#2184 - SQLite3::loadExtension の例
Example#2185 - SQLite3::open の例
Example#2186 - SQLite3::prepare の例
Example#2187 - SQLite3::query の例
Example#2188 - SQLite3::querySingle の例
Example#2189 - SQLite3::version の例
Example#2190 - SQLite3Stmt::bindValue の例
Example#2191 - sqlsrv_begin_transaction example
Example#2192 - sqlsrv_cancel example
Example#2193 - sqlsrv_client_info example
Example#2194 - sqlsrv_close example
Example#2195 - sqlsrv_commit example
Example#2196 - Connect using Windows Authentication.
Example#2197 - Connect by specifying a user name and password.
Example#2198 - Connect on a specifed port.
Example#2199 - functionname example
Example#2200 - sqlsrv_execute example
Example#2201 - Retrieving an associative array.
Example#2202 - Retrieving a numeric array.
Example#2203 - sqlsrv_fetch_object example
Example#2204 - sqlsrv_fetch example
Example#2205 - sqlsrv_field_metadata example
Example#2206 - sqlsrv_free_stmt example
Example#2207 - sqlsrv_get_field example
Example#2208 - sqlsrv_has_rows example
Example#2209 - sqlsrv_next_result example
Example#2210 - sqlsrv_num_fields example
Example#2211 - sqlsrv_num_rows example
Example#2212 - sqlsrv_prepare example
Example#2213 - sqlsrv_query example
Example#2214 - sqlsrv_rollback example
Example#2215 - sqlsrv_rows_affected example
Example#2216 - sqlsrv_send_stream_data example
Example#2217 - sqlsrv_server_info example
Example#2218 - 削除クエリ
Example#2219 - sybase_connect の例
Example#2220 - 同一フィールド名
Example#2221 - sybase_fetch_object の結果を Foo で返す
Example#2222 - sybase_set_message_handler コールバック関数
Example#2223 - クラスへの sybase_set_message_handler コールバック
Example#2224 - sybase_set_message_handler が処理しないメッセージ
Example#2225 - sybase_unbuffered_query の例
Example#2226 - key-value ペアの格納と取得
Example#2227 - TokyoTyrant::add の例
Example#2228 - TokyoTyrant::connect の例
Example#2229 - TokyoTyrant::connectUri の例
Example#2230 - TokyoTyrant::copy の例
Example#2231 - TokyoTyrant::ext の例
Example#2232 - TokyoTyrant::fwmKeys の例
Example#2233 - TokyoTyrant::get の例
Example#2234 - TokyoTyrant::getIterator の例
Example#2235 - TokyoTyrant::num の例
Example#2236 - TokyoTyrant::out の例
Example#2237 - TokyoTyrant::put の例
Example#2238 - TokyoTyrant::putCat の例
Example#2239 - tokyotyrant::putKeep の例
Example#2240 - TokyoTyrant::putNr の例
Example#2241 - TokyoTyrant::putShl example
Example#2242 - TokyoTyrant::setMaster の例
Example#2243 - TokyoTyrant::size の例
Example#2244 - TokyoTyrant::stat の例
Example#2245 - TokyoTyrant::vanish の例
Example#2246 - TokyoTyrantTable::genUid の例
Example#2247 - TokyoTyrantTable::get の例
Example#2248 - TokyoTyrantTable::getIterator の例
Example#2249 - TokyoTyrantTable::getQuery の例
Example#2250 - TokyoTyrantTable::out の例
Example#2251 - TokyoTyrantTable::put の例
Example#2252 - TokyoTyrantTable::putCat の例
Example#2253 - TokyoTyrantTable::putKeep の例
Example#2254 - TokyoTyrantQuery::addCond の例
Example#2255 - TokyoTyrantQuery::__construct の例
Example#2256 - TokyoTyrantQuery::count の例
Example#2257 - TokyoTyrantQuery のイテレータの例
Example#2258 - TokyoTyrantQuery::hint の例
Example#2259 - TokyoTyrantQuery のイテレータの例
Example#2260 - TokyoTyrantQuery::metaSearch の例
Example#2261 - TokyoTyrantQuery のイテレータの例
Example#2262 - TokyoTyrantQuery::out の例
Example#2263 - TokyoTyrantQuery のイテレータの例
Example#2264 - TokyoTyrantQuery::search の例
Example#2265 - TokyoTyrantQuery のイテレータの例
Example#2266 - TokyoTyrantIterator::__construct の例
Example#2267 - 開いているファイル記述子を閉じる
Example#2268 - ロックの設定と解除
Example#2269 - ファイル記述子をオープンする
Example#2270 - ファイル内の位置の指定
Example#2271 - シリアルポートのボーレートを設定する
Example#2272 - chdir の例
Example#2273 - chroot の例
Example#2274 - closedir の例
Example#2275 - dir の例
Example#2276 - getcwd の例
Example#2277 - opendir の例
Example#2278 - ディレクトリ内の全てのエントリのリストを得る
Example#2279 - カレントディレクトリの全てのエントリを一覧する。ただし . および .. は取り除く
Example#2280 - scandir の簡単な例
Example#2281 - PHP 4 での scandir の代用方法
Example#2282 - finfo_buffer の例
Example#2283 - finfo_file の例
Example#2284 - オブジェクト指向型
Example#2285 - 手続き型
Example#2286 - mime_content_type の例
Example#2287 - basename の例
Example#2288 - ファイルのグループの変更
Example#2289 - シンプルな chown の例
Example#2290 - clearstatcache の例
Example#2291 - copy の例
Example#2292 - dirname の例
Example#2293 - disk_free_space の例
Example#2294 - disk_total_space の例
Example#2295 - シンプルな fclose の例
Example#2296 - feof のタイムアウト処理
Example#2297 - feof に無効なファイルポインタを使用する例
Example#2298 - fflush を使用するファイル書き込みの例
Example#2299 - fgetc の例
Example#2300 - CSV ファイルの全てのコンテンツを読み込み、表示する
Example#2301 - 行毎にファイルを読み込む
Example#2302 - PHP ファイルの 1 行ごとの読み込み
Example#2303 - あるファイルが存在するかどうか調べる
Example#2304 - とあるウェブサイトのホームページのソースの取得と出力
Example#2305 - include_path の検索
Example#2306 - ファイルの一部の読み込み
Example#2307 - ストリームコンテキストの使用
Example#2308 - シンプルな使用例
Example#2309 - フラグの使用
Example#2310 - file の例
Example#2311 - fileatime の例
Example#2312 - filectime の例
Example#2313 - ファイルのグループの取得
Example#2314 - 現在のファイルとのファイルの inode の比較
Example#2315 - filemtime の例
Example#2316 - ファイルの所有者の取得
Example#2317 - 八進形式でのパーミッションの表示
Example#2318 - 完全なパーミッションの表示
Example#2319 - filesize の例
Example#2320 - filetype の例
Example#2321 - flock の例
Example#2322 - flock で LOCK_NB オプションを使う例
Example#2323 - シェルのワイルドカードパターンによる色の名前のチェック
Example#2324 - fopen の例
Example#2325 - バイナリファイルに対する fpassthru の使用例
Example#2326 - fputcsv の例
Example#2327 - シンプルな fread の例
Example#2328 - バイナリの fread の例
Example#2329 - リモートファイルの fread の例
Example#2330 - fscanf の例
Example#2331 - users.txt の内容
Example#2332 - fseek の例
Example#2333 - fstat の例
Example#2334 - ftell の例
Example#2335 - ファイルの丸めの例
Example#2336 - 簡単な fwrite の例
Example#2337 - glob が opendir と関連する関数群の代替策になるかを示す簡便な方法
Example#2338 - is_dir の例
Example#2339 - is_executable の例
Example#2340 - is_file の例
Example#2341 - シンボリックリンクの作成と、ファイルがシンボリックリンクかどうかの確認
Example#2342 - is_readable の例
Example#2343 - is_uploaded_file の例
Example#2344 - is_writable の例
Example#2345 - シンボリックリンクのグループの変更
Example#2346 - シンボリックリンクの所有者の変更
Example#2347 - シンプルなハードリンクの作成
Example#2348 - linkinfo の例
Example#2349 - stat と lstat の比較
Example#2350 - mkdir の例
Example#2351 - mkdir での recursive パラメータの使用例
Example#2352 - 複数のファイルのアップロード
Example#2353 - sample.ini の内容
Example#2354 - parse_ini_file の例
Example#2355 - parse_ini_file による php.ini ファイルのパース
Example#2356 - pathinfo の例
Example#2357 - pathinfo での、拡張子を空にしたときと拡張子がないときの違いの例
Example#2358 - pclose の例
Example#2359 - popen の例
Example#2360 - popen の例
Example#2361 - readfile によるダウンロードの強制
Example#2362 - readlink の例
Example#2363 - realpath_cache_get 例
Example#2364 - realpath_cache_size 例
Example#2365 - realpath の例
Example#2366 - Windows 上での realpath
Example#2367 - rename の例
Example#2368 - rewind での上書きの例
Example#2369 - rmdir の例
Example#2370 - stat の例
Example#2371 - stat の情報を touch と組み合わせる例
Example#2372 - シンボリックリンクの作成
Example#2373 - tempnam の例
Example#2374 - tmpfile の例
Example#2375 - touch の例
Example#2376 - touch で time パラメータを使用する例
Example#2377 - umask の例
Example#2378 - 基本的な unlink の使用法
Example#2379 - inotify の使用例
Example#2380 - magic.mime のパスの設定例
Example#2381 - setproctitle の例
Example#2382 - setthreadtitle の例
Example#2383 - システム管理者がファイルに署名をしているかどうかを調べる
Example#2384 - ファイルのすべての拡張属性の名前を表示する
Example#2385 - ファイルのすべての拡張属性を削除する
Example#2386 - .wav ファイルに拡張属性を設定する
Example#2387 - xattr_supported の例
Example#2388 - xdiff_file_bdiff_size の例
Example#2389 - xdiff_file_bdiff の例
Example#2390 - xdiff_file_bpatch の例
Example#2391 - xdiff_file_diff_binary の例
Example#2392 - xdiff_file_diff の例
Example#2393 - xdiff_file_merge3 の例
Example#2394 - xdiff_file_patch_binary の例
Example#2395 - xdiff_file_patch の例
Example#2396 - 逆パッチの例
Example#2397 - xdiff_file_rabdiff の例
Example#2398 - xdiff_string_bdiff_size の例
Example#2399 - xdiff_string_diff の例
Example#2400 - xdiff_string_patch の例
Example#2401 - Enchant の使用例
Example#2402 - 指定したブローカーが提供するバックエンドの一覧
Example#2403 - enchant_broker_dict_exists の例
Example#2404 - あるブローカーで使用可能なすべての辞書を表示する
Example#2405 - enchant_broker_request_dict の例
Example#2406 - enchant_broker_dict_describe の例
Example#2407 - enchant_dict_quick_check の例
Example#2408 - enchant_dict_suggest の例
Example#2409 - 利用例
Example#2410 - Gender\Gender::country の使用例
Example#2411 - bindtextdomain の例
Example#2412 - gettext のチェック
Example#2413 - ngettext の例
Example#2414 - iconv_get_encoding の例
Example#2415 - iconv_mime_decode_headers の例
Example#2416 - iconv_mime_decode の例
Example#2417 - iconv_mime_encode の例:
Example#2418 - iconv_set_encoding の例
Example#2419 - iconv の例
Example#2420 - ob_iconv_handler の例
Example#2421 - 手続き型 API の使用例
Example#2422 - オブジェクト指向型 API の使用例
Example#2423 - FRENCH_COLLATION のルール
Example#2424 - ALTERNATE_HANDLING のルール
Example#2425 - CASE_FIRST のルール
Example#2426 - CASE_LEVEL のルール
Example#2427 - collator_asort の例
Example#2428 - collator_compare の例
Example#2429 - Collator::__construct の例
Example#2430 - collator_create の例
Example#2431 - collator_get_attribute の例
Example#2432 - collator_get_error_code の例
Example#2433 - collator_get_error_message の例
Example#2434 - collator_get_locale の例
Example#2435 - collator_get_sort_key の例
Example#2436 - collator_get_strength の例
Example#2437 - collator_set_attribute の例
Example#2438 - collator_set_strength の例
Example#2439 - collator_sort_with_sort_keys の例
Example#2440 - collator_sort の例
Example#2441 - numfmt_create の例
Example#2442 - NumberFormatter::create の例
Example#2443 - numfmt_format_currency の例
Example#2444 - オブジェクト指向の例
Example#2445 - numfmt_format の例
Example#2446 - オブジェクト指向の例
Example#2447 - numfmt_get_attribute の例
Example#2448 - オブジェクト指向の例
Example#2449 - numfmt_get_error_code の例
Example#2450 - オブジェクト指向の例
Example#2451 - numfmt_get_error_message の例
Example#2452 - オブジェクト指向の例
Example#2453 - numfmt_get_locale の例
Example#2454 - numfmt_get_pattern の例
Example#2455 - オブジェクト指向の例
Example#2456 - numfmt_get_symbol の例
Example#2457 - オブジェクト指向の例
Example#2458 - numfmt_get_text_attribute の例
Example#2459 - オブジェクト指向の例
Example#2460 - numfmt_parse_currency の例
Example#2461 - オブジェクト指向の例
Example#2462 - numfmt_parse の例
Example#2463 - オブジェクト指向の例
Example#2464 - numfmt_set_attribute の例
Example#2465 - オブジェクト指向の例
Example#2466 - numfmt_set_pattern の例
Example#2467 - オブジェクト指向の例
Example#2468 - numfmt_set_symbol の例
Example#2469 - オブジェクト指向の例
Example#2470 - numfmt_set_text_attribute の例
Example#2471 - オブジェクト指向の例
Example#2472 - locale_accept_from_http の例
Example#2473 - オブジェクト指向の例
Example#2474 - locale_compose の例
Example#2475 - オブジェクト指向の例
Example#2476 - locale_filter_matches の例
Example#2477 - オブジェクト指向の例
Example#2478 - locale_get_all_variants の例
Example#2479 - オブジェクト指向の例
Example#2480 - locale_get_default の例
Example#2481 - オブジェクト指向の例
Example#2482 - locale_get_display_language の例
Example#2483 - オブジェクト指向の例
Example#2484 - locale_get_display_name の例
Example#2485 - オブジェクト指向の例
Example#2486 - locale_get_display_region の例
Example#2487 - オブジェクト指向の例
Example#2488 - locale_get_display_script の例
Example#2489 - オブジェクト指向の例
Example#2490 - locale_get_display_variant の例
Example#2491 - オブジェクト指向の例
Example#2492 - locale_get_keywords の例
Example#2493 - オブジェクト指向の例
Example#2494 - locale_get_primary_language の例
Example#2495 - オブジェクト指向の例
Example#2496 - locale_get_region の例
Example#2497 - オブジェクト指向の例
Example#2498 - locale_get_script の例
Example#2499 - オブジェクト指向の例
Example#2500 - locale_lookup の例
Example#2501 - オブジェクト指向の例
Example#2502 - locale_parse の例
Example#2503 - オブジェクト指向の例
Example#2504 - locale_set_default の例
Example#2505 - オブジェクト指向の例
Example#2506 - normalizer_is_normalized の例
Example#2507 - オブジェクト指向の例
Example#2508 - normalizer_normalize の例
Example#2509 - オブジェクト指向の例
Example#2510 - msgfmt_create の例
Example#2511 - オブジェクト指向の例
Example#2512 - msgfmt_format_message の例
Example#2513 - オブジェクト指向の例
Example#2514 - msgfmt_format の例
Example#2515 - オブジェクト指向の例
Example#2516 - msgfmt_get_error_code の例
Example#2517 - オブジェクト指向の例
Example#2518 - msgfmt_get_error_message の例
Example#2519 - オブジェクト指向の例
Example#2520 - msgfmt_get_locale の例
Example#2521 - オブジェクト指向の例
Example#2522 - msgfmt_get_pattern の例
Example#2523 - オブジェクト指向の例
Example#2524 - msgfmt_parse_message の例
Example#2525 - オブジェクト指向の例
Example#2526 - msgfmt_parse の例
Example#2527 - オブジェクト指向の例
Example#2528 - msgfmt_set_pattern の例
Example#2529 - オブジェクト指向の例
Example#2530 - datefmt_create の例
Example#2531 - オブジェクト指向の例
Example#2532 - datefmt_format の例
Example#2533 - オブジェクト指向の例
Example#2534 - datefmt_get_calendar の例
Example#2535 - オブジェクト指向の例
Example#2536 - datefmt_get_datetype の例
Example#2537 - オブジェクト指向の例
Example#2538 - datefmt_get_error_code の例
Example#2539 - オブジェクト指向の例
Example#2540 - datefmt_get_error_message の例
Example#2541 - オブジェクト指向の例
Example#2542 - datefmt_get_locale の例
Example#2543 - オブジェクト指向の例
Example#2544 - datefmt_get_pattern の例
Example#2545 - オブジェクト指向の例
Example#2546 - datefmt_get_timetype の例
Example#2547 - オブジェクト指向の例
Example#2548 - datefmt_get_timezone_id の例
Example#2549 - オブジェクト指向の例
Example#2550 - datefmt_is_lenient の例
Example#2551 - オブジェクト指向の例
Example#2552 - datefmt_localtime の例
Example#2553 - オブジェクト指向の例
Example#2554 - datefmt_parse の例
Example#2555 - オブジェクト指向の例
Example#2556 - datefmt_set_calendar の例
Example#2557 - オブジェクト指向の例
Example#2558 - datefmt_set_lenient の例
Example#2559 - オブジェクト指向の例
Example#2560 - datefmt_set_pattern の例
Example#2561 - オブジェクト指向の例
Example#2562 - datefmt_set_timezone_id の例
Example#2563 - オブジェクト指向の例
Example#2564 - resourcebundle_count の例
Example#2565 - オブジェクト指向の例
Example#2566 - resourcebundle_create の例
Example#2567 - ResourceBundle::create の例
Example#2568 - resourcebundle_get_error_code の例
Example#2569 - オブジェクト指向の例
Example#2570 - resourcebundle_get_error_message の例
Example#2571 - オブジェクト指向の例
Example#2572 - resourcebundle_get の例
Example#2573 - オブジェクト指向の例
Example#2574 - resourcebundle_locales の例
Example#2575 - オブジェクト指向の例
Example#2576 - エスケープされた UTF-16 コード単位の変換
Example#2577 - grapheme_extract の例
Example#2578 - grapheme_stripos の例
Example#2579 - grapheme_stristr の例
Example#2580 - grapheme_strlen の例
Example#2581 - grapheme_strpos example
Example#2582 - grapheme_strripos の例
Example#2583 - grapheme_strrpos example
Example#2584 - grapheme_strstr の例
Example#2585 - grapheme_substr の例
Example#2586 - idn_to_ascii の例
Example#2587 - idn_to_utf8 の例
Example#2588 - intl_error_name の例
Example#2589 - intl_get_error_code の例
Example#2590 - intl_get_error_message の例
Example#2591 - intl_is_failure example
Example#2592 - php.ini 設定の例
Example#2593 - EUC-JP ユーザー用の php.ini の設定
Example#2594 - SJIS ユーザー用の php.iniの 設定
Example#2595 - php.ini で HTTP 入力変換を無効にする
Example#2596 - php.ini の設定例
Example#2597 - スクリプトの例
Example#2598 - mb_convert_case の例
Example#2599 - 非ラテン UTF-8 テキストでの mb_convert_case の例
Example#2600 - mb_convert_encoding の例
Example#2601 - mb_convert_kana の例
Example#2602 - mb_convert_variables の例
Example#2603 - convmap の例
Example#2604 - mb_detect_encoding の例
Example#2605 - 無意味な順番の例
Example#2606 - mb_detect_order の例
Example#2607 - mb_encode_mimeheader の例
Example#2608 - convmap の例
Example#2609 - mb_encode_numericentity の例
Example#2610 - mb_encoding_aliases 例
Example#2611 - mb_ereg_replace_callback の例
Example#2612 - PHP 5.3.0以降でサポートされる匿名関数を使用したmb_ereg_replace_callbackの例
Example#2613 - mb_internal_encoding の例
Example#2614 - mb_list_encodings の例
Example#2615 - mb_output_handler の例
Example#2616 - mb_preferred_mime_name の例
Example#2617 - mb_strimwidth の例
Example#2618 - mb_strtolower の例
Example#2619 - 非ラテン UTF-8 テキストでの mb_strtolower の例
Example#2620 - mb_strtoupper の例
Example#2621 - 非ラテン UTF-8 テキストでの mb_strtoupper の例
Example#2622 - mb_substitute_character の例
Example#2623 - mb_substr_count の例
Example#2624 - pspell_add_to_personal
Example#2625 - pspell_check の例
Example#2626 - pspell_add_to_personal の例
Example#2627 - pspell_config_create
Example#2628 - pspell_config_ignore
Example#2629 - pspell_config_mode の例
Example#2630 - pspell_config_personal
Example#2631 - pspell_config_repl
Example#2632 - pspell_config_runtogether
Example#2633 - pspell_new_config
Example#2634 - pspell_new_personal
Example#2635 - pspell_new
Example#2636 - pspell_add_to_personal
Example#2637 - pspell_store_replacement
Example#2638 - pspell_suggest の例
Example#2639 - 基本的な recode_file の例
Example#2640 - 基本的な recode_string の例
Example#2641 - Cairo Example
Example#2642 - cairo_create example
Example#2643 - cairo_font_face_get_type example
Example#2644 - cairo_font_face_status example
Example#2645 - cairo_font_options_create example
Example#2646 - cairo_font_options_equal example
Example#2647 - cairo_font_options_get_antialias example
Example#2648 - cairo_font_options_get_hint_metrics example
Example#2649 - cairo_font_options_get_hint_style example
Example#2650 - cairo_font_options_get_subpixel_order example
Example#2651 - cairo_font_options_hash example
Example#2652 - cairo_font_options_merge example
Example#2653 - cairo_font_options_set_antialias example
Example#2654 - cairo_font_options_set_hint_metrics example
Example#2655 - cairo_font_options_set_hint_style example
Example#2656 - cairo_font_options_set_subpixel_order example
Example#2657 - cairo_font_options_status example
Example#2658 - cairo_format_stride_for_width example
Example#2659 - cairo_image_surface_create_for_data example
Example#2660 - cairo_image_surface_create_from_png example
Example#2661 - cairo_image_surface_create example
Example#2662 - cairo_image_surface_get_data example
Example#2663 - cairo_image_surface_get_format example
Example#2664 - cairo_image_surface_get_height example
Example#2665 - cairo_image_surface_get_stride example
Example#2666 - cairo_image_surface_get_width example
Example#2667 - cairo_matrix_invert example
Example#2668 - cairo_matrix_multiply example
Example#2669 - cairo_matrix_rotate example
Example#2670 - cairo_matrix_transform_distance example
Example#2671 - cairo_matrix_transform_point example
Example#2672 - cairo_matrix_translate example
Example#2673 - cairo_pattern_add_color_stop_rgb example
Example#2674 - cairo_pattern_add_color_stop_rgba example
Example#2675 - cairo_pattern_create_for_surface example
Example#2676 - cairo_pattern_create_linear example
Example#2677 - cairo_pattern_create_radial example
Example#2678 - cairo_pattern_create_rgb example
Example#2679 - cairo_pattern_create_rgba example
Example#2680 - cairo_pattern_get_color_stop_count example
Example#2681 - cairo_pattern_get_color_stop_rgba example
Example#2682 - cairo_pattern_get_extend example
Example#2683 - cairo_pattern_get_filter example
Example#2684 - cairo_pattern_get_linear_points example
Example#2685 - cairo_pattern_get_matrix example
Example#2686 - cairo_pattern_get_radial_circles example
Example#2687 - cairo_pattern_get_rgba example
Example#2688 - cairo_pattern_get_surface example
Example#2689 - cairo_pattern_get_type example
Example#2690 - cairo_pattern_set_extend example
Example#2691 - cairo_pattern_set_filter example
Example#2692 - cairo_pattern_set_matrix example
Example#2693 - cairo_pattern_status example
Example#2694 - cairo_pdf_surface_create example
Example#2695 - cairo_pdf_surface_set_size example
Example#2696 - cairo_ps_get_levels example
Example#2697 - cairo_ps_level_to_string example
Example#2698 - cairo_ps_surface_create example
Example#2699 - cairo_ps_surface_dsc_begin_page_setup example
Example#2700 - cairo_ps_surface_dsc_begin_setup example
Example#2701 - cairo_ps_surface_dsc_comment example
Example#2702 - cairo_ps_surface_get_eps example
Example#2703 - cairo_ps_surface_restrict_to_level example
Example#2704 - cairo_ps_surface_set_eps example
Example#2705 - cairo_ps_surface_set_size example
Example#2706 - cairo_scaled_font_create example
Example#2707 - cairo_scaled_font_extents example
Example#2708 - cairo_scaled_font_get_ctm example
Example#2709 - cairo_scaled_font_get_font_face example
Example#2710 - cairo_scaled_font_get_font_matrix example
Example#2711 - cairo_scaled_font_get_font_options example
Example#2712 - cairo_scaled_font_get_scale_matrix example
Example#2713 - cairo_scaled_font_get_type example
Example#2714 - cairo_scaled_font_glyph_extents example
Example#2715 - cairo_scaled_font_status example
Example#2716 - cairo_scaled_font_text_extents example
Example#2717 - cairo_surface_copy_page example
Example#2718 - cairo_surface_create_similar example
Example#2719 - cairo_surface_finish example
Example#2720 - cairo_surface_flush example
Example#2721 - cairo_surface_get_content example
Example#2722 - cairo_surface_get_device_offset example
Example#2723 - cairo_surface_get_font_options example
Example#2724 - cairo_surface_get_type example
Example#2725 - cairo_surface_mark_dirty_rectangle example
Example#2726 - cairo_surface_mark_dirty example
Example#2727 - cairo_surface_set_device_offset example
Example#2728 - cairo_surface_set_fallback_resolution example
Example#2729 - cairo_surface_show_page example
Example#2730 - cairo_surface_status example
Example#2731 - cairo_surface_write_to_png example
Example#2732 - cairo_svg_surface_create example
Example#2733 - cairo_svg_surface_restrict_to_version example
Example#2734 - cairo_svg_version_to_string example
Example#2735 - オブジェクト指向型
Example#2736 - 手続き型
Example#2737 - オブジェクト指向型
Example#2738 - 手続き型
Example#2739 - オブジェクト指向型
Example#2740 - 手続き型
Example#2741 - オブジェクト指向型
Example#2742 - 手続き型
Example#2743 - オブジェクト指向型
Example#2744 - 手続き型
Example#2745 - オブジェクト指向型
Example#2746 - 手続き型
Example#2747 - オブジェクト指向型
Example#2748 - 手続き型
Example#2749 - オブジェクト指向型
Example#2750 - 手続き型
Example#2751 - オブジェクト指向型
Example#2752 - 手続き型
Example#2753 - オブジェクト指向型
Example#2754 - 手続き型
Example#2755 - オブジェクト指向型
Example#2756 - 手続き型
Example#2757 - オブジェクト指向型
Example#2758 - 手続き型
Example#2759 - オブジェクト指向型
Example#2760 - 手続き型
Example#2761 - CairoContext::__construct example
Example#2762 - オブジェクト指向型
Example#2763 - 手続き型
Example#2764 - オブジェクト指向型
Example#2765 - 手続き型
Example#2766 - オブジェクト指向型
Example#2767 - 手続き型
Example#2768 - オブジェクト指向型
Example#2769 - 手続き型
Example#2770 - オブジェクト指向型
Example#2771 - 手続き型
Example#2772 - オブジェクト指向型
Example#2773 - 手続き型
Example#2774 - オブジェクト指向型
Example#2775 - 手続き型
Example#2776 - オブジェクト指向型
Example#2777 - 手続き型
Example#2778 - オブジェクト指向型
Example#2779 - 手続き型
Example#2780 - オブジェクト指向型
Example#2781 - 手続き型
Example#2782 - オブジェクト指向型
Example#2783 - 手続き型
Example#2784 - オブジェクト指向型
Example#2785 - 手続き型
Example#2786 - オブジェクト指向型
Example#2787 - 手続き型
Example#2788 - オブジェクト指向型
Example#2789 - 手続き型
Example#2790 - オブジェクト指向型
Example#2791 - 手続き型
Example#2792 - オブジェクト指向型
Example#2793 - 手続き型
Example#2794 - オブジェクト指向型
Example#2795 - 手続き型
Example#2796 - オブジェクト指向型
Example#2797 - 手続き型
Example#2798 - オブジェクト指向型
Example#2799 - 手続き型
Example#2800 - オブジェクト指向型
Example#2801 - 手続き型
Example#2802 - オブジェクト指向型
Example#2803 - 手続き型
Example#2804 - オブジェクト指向型
Example#2805 - 手続き型
Example#2806 - オブジェクト指向型
Example#2807 - 手続き型
Example#2808 - オブジェクト指向型
Example#2809 - 手続き型
Example#2810 - オブジェクト指向型
Example#2811 - 手続き型
Example#2812 - オブジェクト指向型
Example#2813 - 手続き型
Example#2814 - オブジェクト指向型
Example#2815 - 手続き型
Example#2816 - オブジェクト指向型
Example#2817 - 手続き型
Example#2818 - オブジェクト指向型
Example#2819 - 手続き型
Example#2820 - オブジェクト指向型
Example#2821 - 手続き型
Example#2822 - オブジェクト指向型
Example#2823 - 手続き型
Example#2824 - オブジェクト指向型
Example#2825 - 手続き型
Example#2826 - オブジェクト指向型
Example#2827 - 手続き型
Example#2828 - オブジェクト指向型
Example#2829 - 手続き型
Example#2830 - オブジェクト指向型
Example#2831 - 手続き型
Example#2832 - オブジェクト指向型
Example#2833 - 手続き型
Example#2834 - オブジェクト指向型
Example#2835 - 手続き型
Example#2836 - オブジェクト指向型
Example#2837 - 手続き型
Example#2838 - オブジェクト指向型
Example#2839 - 手続き型
Example#2840 - オブジェクト指向型
Example#2841 - 手続き型
Example#2842 - オブジェクト指向型
Example#2843 - 手続き型
Example#2844 - オブジェクト指向型
Example#2845 - 手続き型
Example#2846 - オブジェクト指向型
Example#2847 - 手続き型
Example#2848 - オブジェクト指向型
Example#2849 - 手続き型
Example#2850 - オブジェクト指向型
Example#2851 - 手続き型
Example#2852 - オブジェクト指向型
Example#2853 - 手続き型
Example#2854 - オブジェクト指向型
Example#2855 - 手続き型
Example#2856 - オブジェクト指向型
Example#2857 - 手続き型
Example#2858 - オブジェクト指向型
Example#2859 - 手続き型
Example#2860 - オブジェクト指向型
Example#2861 - 手続き型
Example#2862 - オブジェクト指向型
Example#2863 - 手続き型
Example#2864 - オブジェクト指向型
Example#2865 - 手続き型
Example#2866 - オブジェクト指向型
Example#2867 - 手続き型
Example#2868 - オブジェクト指向型
Example#2869 - 手続き型
Example#2870 - オブジェクト指向型
Example#2871 - 手続き型
Example#2872 - オブジェクト指向型
Example#2873 - 手続き型
Example#2874 - オブジェクト指向型
Example#2875 - 手続き型
Example#2876 - オブジェクト指向型
Example#2877 - 手続き型
Example#2878 - オブジェクト指向型
Example#2879 - 手続き型
Example#2880 - オブジェクト指向型
Example#2881 - 手続き型
Example#2882 - オブジェクト指向型
Example#2883 - 手続き型
Example#2884 - オブジェクト指向型
Example#2885 - 手続き型
Example#2886 - オブジェクト指向型
Example#2887 - 手続き型
Example#2888 - オブジェクト指向型
Example#2889 - 手続き型
Example#2890 - オブジェクト指向型
Example#2891 - 手続き型
Example#2892 - オブジェクト指向型
Example#2893 - 手続き型
Example#2894 - オブジェクト指向型
Example#2895 - 手続き型
Example#2896 - オブジェクト指向型
Example#2897 - 手続き型
Example#2898 - オブジェクト指向型
Example#2899 - 手続き型
Example#2900 - オブジェクト指向型
Example#2901 - 手続き型
Example#2902 - オブジェクト指向型
Example#2903 - 手続き型
Example#2904 - オブジェクト指向型
Example#2905 - 手続き型
Example#2906 - オブジェクト指向型
Example#2907 - 手続き型
Example#2908 - オブジェクト指向型
Example#2909 - 手続き型
Example#2910 - オブジェクト指向型
Example#2911 - 手続き型
Example#2912 - オブジェクト指向型
Example#2913 - 手続き型
Example#2914 - オブジェクト指向型
Example#2915 - 手続き型
Example#2916 - オブジェクト指向型
Example#2917 - 手続き型
Example#2918 - オブジェクト指向型
Example#2919 - 手続き型
Example#2920 - オブジェクト指向型
Example#2921 - 手続き型
Example#2922 - オブジェクト指向型
Example#2923 - 手続き型
Example#2924 - オブジェクト指向型
Example#2925 - 手続き型
Example#2926 - オブジェクト指向型
Example#2927 - 手続き型
Example#2928 - オブジェクト指向型
Example#2929 - 手続き型
Example#2930 - オブジェクト指向型
Example#2931 - 手続き型
Example#2932 - オブジェクト指向型
Example#2933 - 手続き型
Example#2934 - オブジェクト指向型
Example#2935 - 手続き型
Example#2936 - CairoSurface::createSimilar example
Example#2937 - CairoSurface::finish example
Example#2938 - CairoSurface::flush example
Example#2939 - CairoSurface::getContent example
Example#2940 - CairoSurface::getDeviceOffset example
Example#2941 - オブジェクト指向型
Example#2942 - 手続き型
Example#2943 - CairoSurface::getType example
Example#2944 - CairoSurface::markDirty example
Example#2945 - CairoSurface::markDirtyRectangle example
Example#2946 - CairoSurface::setDeviceOffset example
Example#2947 - CairoSurface::setFallbackResolution example
Example#2948 - オブジェクト指向型
Example#2949 - 手続き型
Example#2950 - オブジェクト指向型
Example#2951 - 手続き型
Example#2952 - CairoSurface::writeToPng example
Example#2953 - CairoSvgSurface::__construct example
Example#2954 - CairoSvgSurface::getVersions example
Example#2955 - 手続き型
Example#2956 - CairoSvgSurface::restrictToVersion example
Example#2957 - CairoSvgSurface::versionToString example
Example#2958 - CairoImageSurface::__construct example
Example#2959 - CairoImageSurface::createForData example
Example#2960 - CairoImageSurface::createFromPng example
Example#2961 - CairoImageSurface::getData example
Example#2962 - CairoImageSurface::getFormat example
Example#2963 - CairoImageSurface::getHeight example
Example#2964 - CairoImageSurface::getStride example
Example#2965 - CairoImageSurface::getWidth example
Example#2966 - CairoPdfSurface::__construct example
Example#2967 - CairoPdfSurface::setSize example
Example#2968 - CairoPsSurface::__construct example
Example#2969 - CairoPsSurface::dscBeginPageSetup example
Example#2970 - CairoPsSurface::dscBeginSetup example
Example#2971 - CairoPsSurface::dscComment example
Example#2972 - CairoPsSurface::getEps example
Example#2973 - CairoPsSurface::getLevels example
Example#2974 - CairoPsSurface::levelToString example
Example#2975 - CairoPsSurface::restrictToLevel example
Example#2976 - CairoPsSurface::setEps example
Example#2977 - CairoPsSurface::setSize example
Example#2978 - CairoFontFace::__construct example
Example#2979 - CairoFontFace::getType example
Example#2980 - オブジェクト指向型
Example#2981 - 手続き型
Example#2982 - CairoFontOptions::__construct example
Example#2983 - CairoFontOptions::equal example
Example#2984 - オブジェクト指向型
Example#2985 - 手続き型
Example#2986 - CairoFontOptions::getHintMetrics example
Example#2987 - CairoFontOptions::getHintStyle example
Example#2988 - CairoFontOptions::getSubpixelOrder example
Example#2989 - CairoFontOptions::hash example
Example#2990 - CairoFontOptions::merge example
Example#2991 - オブジェクト指向型
Example#2992 - 手続き型
Example#2993 - CairoFontOptions::setHintMetrics example
Example#2994 - CairoFontOptions::setHintStyle example
Example#2995 - CairoFontOptions::setSubpixelOrder example
Example#2996 - オブジェクト指向型
Example#2997 - 手続き型
Example#2998 - CairoScaledFont::__construct example
Example#2999 - CairoScaledFont::extents example
Example#3000 - CairoScaledFont::getCtm example
Example#3001 - オブジェクト指向型
Example#3002 - 手続き型
Example#3003 - オブジェクト指向型
Example#3004 - 手続き型
Example#3005 - オブジェクト指向型
Example#3006 - 手続き型
Example#3007 - CairoScaledFont::getScaleMatrix example
Example#3008 - CairoScaledFont::getType example
Example#3009 - CairoScaledFont::glyphExtents example
Example#3010 - オブジェクト指向型
Example#3011 - 手続き型
Example#3012 - オブジェクト指向型
Example#3013 - 手続き型
Example#3014 - CairoPattern::__construct example
Example#3015 - オブジェクト指向型
Example#3016 - 手続き型
Example#3017 - CairoPattern::getType example
Example#3018 - オブジェクト指向型
Example#3019 - 手続き型
Example#3020 - オブジェクト指向型
Example#3021 - 手続き型
Example#3022 - CairoGradientPattern::addColorStopRgb example
Example#3023 - CairoGradientPattern::addColorStopRgba example
Example#3024 - CairoGradientPattern::getColorStopCount example
Example#3025 - CairoGradientPattern::getColorStopRgba example
Example#3026 - CairoGradientPattern::getExtend example
Example#3027 - CairoGradientPattern::setExtend example
Example#3028 - CairoSolidPattern::__construct example
Example#3029 - CairoSolidPattern::getRgba example
Example#3030 - CairoSurfacePattern::__construct example
Example#3031 - CairoSurfacePattern::getExtend example
Example#3032 - CairoSurfacePattern::getFilter example
Example#3033 - CairoSurfacePattern::getSurface example
Example#3034 - CairoSurfacePattern::setExtend example
Example#3035 - CairoSurfacePattern::setFilter example
Example#3036 - CairoLinearGradient::__construct example
Example#3037 - CairoLinearGradient::getPoints example
Example#3038 - CairoRadialGradient::__construct example
Example#3039 - CairoRadialGradient::getCircles example
Example#3040 - CairoFormat::strideForWidth example
Example#3041 - オブジェクト指向型
Example#3042 - 手続き型
Example#3043 - オブジェクト指向型
Example#3044 - 手続き型
Example#3045 - オブジェクト指向型
Example#3046 - 手続き型
Example#3047 - オブジェクト指向型
Example#3048 - 手続き型
Example#3049 - オブジェクト指向型
Example#3050 - 手続き型
Example#3051 - CairoMatrix::invert example
Example#3052 - CairoMatrix::multiply example
Example#3053 - オブジェクト指向型
Example#3054 - 手続き型
Example#3055 - オブジェクト指向型
Example#3056 - 手続き型
Example#3057 - CairoMatrix::transformDistance example
Example#3058 - CairoMatrix::transformPoint example
Example#3059 - オブジェクト指向型
Example#3060 - 手続き型
Example#3061 - exif_imagetype の例
Example#3062 - exif_read_data の例
Example#3063 - exif_tagname の例
Example#3064 - exif_thumbnail の例
Example#3065 - PHP による PNG の生成
Example#3066 - アルファチャネルを使用した、画像へのすかしの追加
Example#3067 - imagecopymerge による半透明なすかしの作成
Example#3068 - gd_info の使用法
Example#3069 - getimagesize および MIME 型
Example#3070 - getimagesize の例
Example#3071 - getimagesize (URL)
Example#3072 - IPTC を返す getimagesize()
Example#3073 - getimagesizefromstring の例
Example#3074 - image_type_to_extension の例
Example#3075 - image_type_to_mime_type の例
Example#3076 - image2wbmp の例
Example#3077 - imagealphablending の使用例
Example#3078 - 2 本の直線のうち一方にアンチエイリアスを有効にする
Example#3079 - imagearc による円の描画
Example#3080 - imagechar の例
Example#3081 - imagecharup の例
Example#3082 - imagecolorallocate の例
Example#3083 - imagecolorallocatealpha の使用例
Example#3084 - 個々の RGB 値へのアクセス
Example#3085 - imagecolorsforindex による可読形式の RGB 値
Example#3086 - 画像内での色セットの検索
Example#3087 - 画像内での色セットの検索
Example#3088 - imagecolorclosesthwb の使用例
Example#3089 - imagecolordeallocate の使用法
Example#3090 - GD ロゴからの色の取得
Example#3091 - GD ロゴからの色の取得
Example#3092 - imagecolormatch の例
Example#3093 - imagecoloresolve による画像からの色の取得
Example#3094 - imagecoloresolvealpha による画像からの色の取得
Example#3095 - imagecolorset の例
Example#3096 - imagecolorsforindex の例
Example#3097 - imagecolorstotal による画像の色の総数の取得
Example#3098 - imagecolortransparent の例
Example#3099 - PHP.net ロゴのエンボス加工
Example#3100 - ガウス分布のぼかし
Example#3101 - PHP.net のロゴの切り取り
Example#3102 - 2 つの PHP.net ロゴを 75% の透過度でマージ
Example#3103 - imagecopymergegray の使用法
Example#3104 - 単純な例
Example#3105 - イメージを均等に再サンプルする
Example#3106 - イメージをリサイズする
Example#3107 - 新しい GD 画像ストリームの作成および画像の出力
Example#3108 - imagecreatefromgd2 の例
Example#3109 - imagecreatefromgd2part の例
Example#3110 - imagecreatefromgd の例
Example#3111 - GIF の作成時のエラーを処理する例
Example#3112 - JPEG の作成時のエラーを処理する例
Example#3113 - PNG の作成時のエラーを処理する例
Example#3114 - imagecreatefromstring の例
Example#3115 - WBMP の作成時のエラーを処理する例
Example#3116 - XBM 画像から png 画像への imagecreatefromxbm を用いた変換
Example#3117 - imagecreatefromxpm による画像インスタンスの作成
Example#3118 - 新規 GD イメージストリームの作成およびイメージの出力
Example#3119 - imagedashedline の例
Example#3120 - imagedashedline のもうひとつの使用法
Example#3121 - imagedestroy の使用例
Example#3122 - imageellipse の例
Example#3123 - imagefill の例
Example#3124 - 3D 風のパイを作成する
Example#3125 - imagefilledellipse の例
Example#3126 - imagefilledpolygon の例
Example#3127 - imagefilledrectangle の例
Example#3128 - 楕円の塗りつぶし
Example#3129 - imagefilter グレースケールの例
Example#3130 - imagefilter 輝度の例
Example#3131 - imagefilter 単色化の例
Example#3132 - imagefilter での打ち消しの例
Example#3133 - imagefilter でのモザイク処理の例
Example#3134 - 組み込みフォントでの imagefontheight の使用法
Example#3135 - imagefontheight と imageloadfont を組み合わせた使用法
Example#3136 - 組み込みフォントでの imagefontwidth の使用法
Example#3137 - imagefontwidth と imageloadfont を組み合わせた使用法
Example#3138 - imageftbbox の例
Example#3139 - imagefttext の例
Example#3140 - imagegammacorrect の使用法
Example#3141 - GD2 画像の出力
Example#3142 - GD2 画像の保存
Example#3143 - GD 画像の出力
Example#3144 - GD 画像の保存
Example#3145 - imagegif による画像の出力
Example#3146 - imagegif による PNG 画像から GIF への変換
Example#3147 - imagegrabscreen の例
Example#3148 - imagegrabwindow の例
Example#3149 - imageinterlace によるインターレース処理の有効化
Example#3150 - imageistruecolor による、シンプルな true color 画像の検出
Example#3151 - JPEG 画像の出力
Example#3152 - JPEG 画像の保存
Example#3153 - 75% 品質での画像の出力
Example#3154 - imagelayereffect の例
Example#3155 - 太い線を描画する
Example#3156 - imageloadfont の使用例
Example#3157 - imagepalettecopy の例
Example#3158 - imagepolygon の例
Example#3159 - imagepsbbox の使用
Example#3160 - imagepsencodefont の例
Example#3161 - imagepsextendfont の例
Example#3162 - imagepsfreefont の例
Example#3163 - imagepsloadfont の例
Example#3164 - imagepsslantfont の例
Example#3165 - imagepstext の使用
Example#3166 - シンプルな imagerectangle の例
Example#3167 - 画像を 180 度回転する
Example#3168 - imagesavealpha の例
Example#3169 - imagesetbrush の例
Example#3170 - imagesetpixel の例
Example#3171 - imagesetstyle の例
Example#3172 - imagesetthickness の例
Example#3173 - imagesettile の例
Example#3174 - imagestring の例
Example#3175 - imagestringup の例
Example#3176 - imagesx の使用法
Example#3177 - imagesy の使用法
Example#3178 - true color 画像からパレット画像への変換
Example#3179 - imagettfbbox の例
Example#3180 - imagettftext の例
Example#3181 - PNG をサポートしているかどうかの確認
Example#3182 - WBMP 画像の出力
Example#3183 - WBMP 画像の保存
Example#3184 - 別の前景での画像の出力
Example#3185 - XBM ファイルの保存
Example#3186 - 別の前景色による XBM ファイルの保存
Example#3187 - IPTC データの JPEG への埋め込み
Example#3188 - iptcparse() を getimagesize と組み合わせる使用法
Example#3189 - jpeg2wbmp の例
Example#3190 - png2wbmp の例
Example#3191 - Gmagick の例
Example#3192 - Gmagick::despeckleimage の例
Example#3193 - Imagick によるサムネイルの作成
Example#3194 - ディレクトリ内のすべての JPG ファイルのサムネイルの作成
Example#3195 - 画像の鏡像の作成
Example#3196 - グラデーションつきテキスト
Example#3197 - GIF 画像の読み込みと全フレームのサイズ変更
Example#3198 - PHP ロゴの作成
Example#3199 - Imagick::adaptiveBlurImage の使用法
Example#3200 - Imagick::adaptiveResizeImage の使用法
Example#3201 - Imagick::adaptiveSharpenImage の例
Example#3202 - Imagick::annotateImage の使用法
Example#3203 - Imagick::appendImages の例
Example#3204 - Imagick::blurImage の使用法
Example#3205 - Imagick::chopImage の使用法
Example#3206 - Imagick オブジェクトのクローン
Example#3207 - Imagick::clutImage の使用法
Example#3208 - Imagick::commentImage の使用法
Example#3209 - Imagick::compareImageLayers の使用法
Example#3210 - Imagick::compareImages の使用法
Example#3211 - Imagick::distortImage の使用法
Example#3212 - Imagick::evaluateImage の使用法
Example#3213 - Imagick::exportImagePixels の使用法
Example#3214 - Imagick::floodfillPaintImage の例
Example#3215 - Imagick::getImageLength の使用法
Example#3216 - Imagick::getImageProperties の使用法
Example#3217 - Imagick::getImageProperty の使用法
Example#3218 - Imagick::getIteratorIndex の使用法
Example#3219 - Imagick::importImagePixels の例
Example#3220 - Imagick::newImage の使用法
Example#3221 - Imagick::optimizeImageLayers の使用法
Example#3222 - Imagick::pingImageBlob の使用法
Example#3223 - Imagick::pingImageFile の使用法
Example#3224 - Imagick::polaroidImage の例
Example#3225 - Imagick::queryFontMetrics の使用法
Example#3226 - Imagick::roundCorners の使用法
Example#3227 - Imagick::setFont の例
Example#3228 - Imagick::setImage の例
Example#3229 - Imagick::setImageOpacity の例
Example#3230 - Imagick::setImageProperty の使用法
Example#3231 - Imagick::setIteratorIndex の使用法
Example#3232 - Imagick::setPointSize の例
Example#3233 - Imagick::transformImage の使用
Example#3234 - Imagick::trimImage の使用法
Example#3235 - imap_append の例
Example#3236 - imap_check の例
Example#3237 - imap_createmailbox example
Example#3238 - imap_delete の例
Example#3239 - imap_fetch_overview の例
Example#3240 - imap_gc の例
Example#3241 - imap_get_quota の例
Example#3242 - 4.3 以降のバージョンでの imap_get_quota の例
Example#3243 - imap_get_quotaroot の例
Example#3244 - imap_getacl の例
Example#3245 - imap_getmailboxes の例
Example#3246 - imap_list の例
Example#3247 - imap_mail_compose の例
Example#3248 - imap_mailboxmsginfo example
Example#3249 - imap_mime_header_decode の例
Example#3250 - imap_open のさまざまな使用例
Example#3251 - imap_open の例
Example#3252 - imap_ping の例
Example#3253 - imap_reopen の例
Example#3254 - imap_rfc822_parse_adrlist の例
Example#3255 - imap_rfc822_write_address の例
Example#3256 - imap_search の例
Example#3257 - imap_set_quota の例
Example#3258 - imap_setflag_full の例
Example#3259 - imap_status の例
Example#3260 - imap_thread の例
Example#3261 - imap_timeout の例
Example#3262 - ハッシュ値を計算し、ユーザーを登録する
Example#3263 - メールを送信する
Example#3264 - 追加ヘッダを付加してメールを送信する
Example#3265 - 追加ヘッダ及び追加コマンドラインパラメータを指定してメールを送信する
Example#3266 - HTML メールを送信する
Example#3267 - mailparse_determine_best_xfer_encoding の例
Example#3268 - mailparse_rfc822_parse_addresses の例
Example#3269 - mailparse_stream_encode の例
Example#3270 - mailparse_uudecode_all の例
Example#3271 - bcadd の例
Example#3272 - bccomp の例
Example#3273 - bcdiv の例
Example#3274 - bcmod の例
Example#3275 - bcmul の例
Example#3276 - bcpow の例
Example#3277 - bcpow での桁数の例
Example#3278 - bcscale の例
Example#3279 - bcsqrt の例
Example#3280 - bcsub の例
Example#3281 - GMP を使用した階乗関数
Example#3282 - gmp_abs の例
Example#3283 - gmp_add の例
Example#3284 - gmp_and の例
Example#3285 - gmp_clrbit の例
Example#3286 - gmp_cmp の例
Example#3287 - gmp_com の例
Example#3288 - gmp_div_q の例
Example#3289 - GMP 数の割算
Example#3290 - gmp_div_r の例
Example#3291 - gmp_divexact の例
Example#3292 - gmp_fact の例
Example#3293 - gmp_gcd の例
Example#3294 - 線形不定方程式を解く
Example#3295 - gmp_hamdist の例
Example#3296 - GMP 数の作成
Example#3297 - gmp_intval の例
Example#3298 - gmp_invert の例
Example#3299 - gmp_jacobi の例
Example#3300 - gmp_legendre の例
Example#3301 - gmp_mod の例
Example#3302 - gmp_mul の例
Example#3303 - gmp_neg の例
Example#3304 - gmp_nextprime の例
Example#3305 - gmp_or の例
Example#3306 - gmp_perfect_square の例
Example#3307 - gmp_popcount の例
Example#3308 - gmp_pow の例
Example#3309 - gmp_powm の例
Example#3310 - gmp_prob_prime の例
Example#3311 - gmp_random の例
Example#3312 - gmp_scan0 の例
Example#3313 - gmp_scan1 の例
Example#3314 - gmp_setbit の例
Example#3315 - gmp_sign の例
Example#3316 - gmp_sqrt の例
Example#3317 - gmp_sqrtrem の例
Example#3318 - GMP 数を文字列に変換する
Example#3319 - gmp_sub の例
Example#3320 - gmp_testbit の例
Example#3321 - gmp_xor の例
Example#3322 - Using Lapack::eigenValues:
Example#3323 - Using Lapack::leastSquaresByFactorisation:
Example#3324 - Using Lapack::leastSquaresBySVD:
Example#3325 - Using Lapack::pseudoInverse:
Example#3326 - Using Lapack::singularValues:
Example#3327 - Using Lapack::singularValues:
Example#3328 - abs の例
Example#3329 - base_convert の例
Example#3330 - bindec の例
Example#3331 - bindec が入力を符号なし整数として処理する例
Example#3332 - ceil の例
Example#3333 - cos の例
Example#3334 - decbin の例
Example#3335 - dechex の例
Example#3336 - dechex での大きな整数の例
Example#3337 - decoct の例
Example#3338 - deg2rad の例
Example#3339 - exp の例
Example#3340 - floor の例
Example#3341 - fmod の使用法
Example#3342 - hexdec の例
Example#3343 - is_nan の例
Example#3344 - max の使用例
Example#3345 - min の例
Example#3346 - ランダムな浮動小数点数の算出
Example#3347 - mt_rand の例
Example#3348 - mt_srand の例
Example#3349 - octdec の例
Example#3350 - pi の例
Example#3351 - pow の例
Example#3352 - rad2deg の例
Example#3353 - rand の例
Example#3354 - round の例
Example#3355 - mode の例
Example#3356 - mode と precision の例
Example#3357 - sin の例
Example#3358 - sqrt の例
Example#3359 - srand の例
Example#3360 - tan の例
Example#3361 - FDF ドキュメントの評価
Example#3362 - JavaScript コードを FDF に追加する
Example#3363 - PDF ドキュメントを公開する
Example#3364 - アップロードされたファイルを保存する
Example#3365 - FDF のすべてのフィールド名を検出する
Example#3366 - フォームデータへのアクセス
Example#3367 - フォームデータへのアクセス
Example#3368 - FDF の文字列での取得
Example#3369 - FDF データを 2 番目のフォームに渡す
Example#3370 - gnupg での署名の例 (手続き型)
Example#3371 - gnupg での署名の例 (オブジェクト指向)
Example#3372 - keylistiterator
Example#3373 - 手続き型の gnupg_adddecryptkey の例
Example#3374 - オブジェクト指向の gnupg_adddecryptkey の例
Example#3375 - 手続き型の gnupg_addencryptkey の例
Example#3376 - オブジェクト指向の gnupg_addencryptkey の例
Example#3377 - 手続き型の gnupg_addsignkey の例
Example#3378 - オブジェクト指向の gnupg_addsignkey の例
Example#3379 - 手続き型の gnupg_cleardecryptkeys の例
Example#3380 - オブジェクト指向の gnupg_cleardecryptkeys の例
Example#3381 - 手続き型の gnupg_clearencryptkeys の例
Example#3382 - オブジェクト指向の gnupg_clearencryptkeys の例
Example#3383 - 手続き型の gnupg_clearsignkeys の例
Example#3384 - オブジェクト指向の gnupg_clearsignkeys の例
Example#3385 - 手続き型の gnupg_decrypt の例
Example#3386 - オブジェクト指向の gnupg_encrypt の例
Example#3387 - 手続き型の gnupg_decryptverify の例
Example#3388 - オブジェクト指向の gnupg_decryptverify の例
Example#3389 - 手続き型の gnupg_encrypt の例
Example#3390 - オブジェクト指向の gnupg_encrypt の例
Example#3391 - 手続き型の gnupg_encryptsign の例
Example#3392 - オブジェクト指向の gnupg_encryptsign の例
Example#3393 - Procedural gnupg_export example
Example#3394 - OO gnupg_export example
Example#3395 - 手続き型の gnupg_geterror の例
Example#3396 - オブジェクト指向の gnupg_geterror の例
Example#3397 - 手続き型の gnupg_getprotocol の例
Example#3398 - オブジェクト指向の gnupg_getprotocol の例
Example#3399 - 手続き型の gnupg_import の例
Example#3400 - オブジェクト指向の gnupg_import の例
Example#3401 - 手続き型の gnupg_init の例
Example#3402 - オブジェクト指向の gnupg の初期化の例
Example#3403 - 手続き型の gnupg_keyinfo の例
Example#3404 - オブジェクト指向の gnupg_keyinfo の例
Example#3405 - 手続き型の gnupg_setarmor の例
Example#3406 - オブジェクト指向の gnupg_setarmor の例
Example#3407 - 手続き型の gnupg_seterrormode の例
Example#3408 - オブジェクト指向の gnupg_seterrormode の例
Example#3409 - 手続き型の gnupg_setsignmode の例
Example#3410 - オブジェクト指向の gnupg_setsignmode の例
Example#3411 - 手続き型の gnupg_sign の例
Example#3412 - オブジェクト指向の gnupg_sign の例
Example#3413 - 手続き型の gnupg_verify の例
Example#3414 - オブジェクト指向の gnupg_verify の例
Example#3415 - 手の込んだ "Hello world"
Example#3416 - swfaction の例
Example#3417 - swfaction の例
Example#3418 - swfaction の例
Example#3419 - swfsprite の例
Example#3420 - ming_useswfversion の例
Example#3421 - DBL ファイルのインポート
Example#3422 - アルファマスクの使用法
Example#3423 - ボタンの通常の動作
Example#3424 - ドラッグの例
Example#3425 - swfdisplayitem::multcolor の例
Example#3426 - swfdisplayitem::rotateto の例
Example#3427 - swfdisplayitem::setname の例
Example#3428 - swfgradient の例
Example#3429 - swfmorph の例
Example#3430 - $movie のブラウザでの表示
Example#3431 - ストリーム再生の例
Example#3432 - SWFShape::addFill の例
Example#3433 - swfshape の例
Example#3434 - swfshape::setline の例
Example#3435 - swftext の例
Example#3436 - PHP 4 用の PDFlib での Hello World の例
Example#3437 - PHP 5 用の PDFlib での Hello World の例
Example#3438 - パターンの作成および使用
Example#3439 - テンプレートの作成および使用
Example#3440 - テキストのハイフネーション
Example#3441 - 矩形を描画する
Example#3442 - スポット色の作成と使用
Example#3443 - 座標系の回転
Example#3444 - 指定した位置にテキストを配置する
Example#3445 - 破線を描画する
Example#3446 - 座標系の変換
Example#3447 - 基本的な RPMReader の例
Example#3448 - rpm_close の例
Example#3449 - rpm_get_tag の例
Example#3450 - rpm_is_valid の例
Example#3451 - rpm_open の例
Example#3452 - rpm_version の例
Example#3453 - SWF の例
Example#3454 - swf_addbuttonrecord の例
Example#3455 - ユーザーの入力に基づき簡単な flash ファイルを生成し、出力します。 また、データベースにこれを保存します。
Example#3456 - 水平方向のテキストの例
Example#3457 - シンプルな、テキストのまわりの三次元回転
Example#3458 - 間違ったリクエスト
Example#3459 - リクエストコールバックからのリクエストの呼び出し
Example#3460 - リクエストコールバックからのリクエストの呼び出し
Example#3461 - eio と libevent を組み合わせる例
Example#3462 - リクエストの取り消し
Example#3463 - eio_chmod の呼び出し
Example#3464 - カスタムリクエストの作成
Example#3465 - リクエストのグループ化
Example#3466 - eio と libevent を組み合わせる
Example#3467 - eio_cancel の例
Example#3468 - eio_custom の例
Example#3469 - eio_event_loop の例
Example#3470 - eio_lstat の例
Example#3471 - eio を libevent とともに使う
Example#3472 - リクエストのグループ化
Example#3473 - eio_grp の例
Example#3474 - eio_link の例
Example#3475 - eio_lstat の例
Example#3476 - eio_mkdir の例
Example#3477 - eio_mknod の例
Example#3478 - eio_nreqs の例
Example#3479 - eio_open の例
Example#3480 - eio_poll の例
Example#3481 - eio_read の例
Example#3482 - eio_readdir の例
Example#3483 - eio_readlink の例
Example#3484 - eio_realpath の例
Example#3485 - eio_rename の例
Example#3486 - eio_rmdir の例
Example#3487 - eio_stat の例
Example#3488 - eio_statvfs の例
Example#3489 - eio_symlink の例
Example#3490 - タイマーのサンプル
Example#3491 - 10.5 秒おきに繰り返すタイマー
Example#3492 - 再スケジュールコールバックを使う定期タイマー
Example#3493 - すぐに開始し、10.5 秒おきに繰り返すタイマー
Example#3494 - STDIN が読み込み可能になるまで待つ例
Example#3495 - 非同期 I/O を使ったソケットへのアクセス
Example#3496 - ループの中に別のループを埋め込む例
Example#3497 - kqueue バックエンドで作ったループをデフォルトのループに埋め込む例
Example#3498 - SIGTERM の処理
Example#3499 - /var/log/messages の変更の監視
Example#3500 - /var/log/messages の変更の監視 (1 秒の遅延を使って、更新を見落とさないようにする)
Example#3501 - ステータスの変更の処理
Example#3502 - 再スケジュールコールバックの利用
Example#3503 - kqueue バックエンドで作ったループをデフォルトのループに埋め込む例
Example#3504 - ループの中に別のループを埋め込む例
Example#3505 - kqueue バックエンドで作ったループをデフォルトのループに埋め込む例
Example#3506 - kqueue バックエンドで作ったループをデフォルトのループに埋め込む例
Example#3507 - Periodic timer. Use reschedule callback
Example#3508 - Periodic timer. Tick every 10.5 seconds starting at now
Example#3509 - Hourly watcher
Example#3510 - Handle SIGTERM signal
Example#3511 - Monitor changes of /var/log/messages
Example#3512 - Monitor changes of /var/log/messages
Example#3513 - Simple timers
Example#3514 - Monotor changes of /var/log/messages. Avoid missing updates by means of one second delay
Example#3515 - Register an I/O watcher for some UDP socket but do not keep the event loop from running just because of that watcher.
Example#3516 - Expect の使用例
Example#3517 - もうひとつの Expect の使用例
Example#3518 - expect_expectl の例
Example#3519 - expect_popen の例
Example#3520 - 基本 API による STDIN のポーリング
Example#3521 - バッファイベント API による STDIN のポーリング
Example#3522 - プロセス制御の例
Example#3523 - pcntl_fork の例
Example#3524 - pcntl_signal_dispatch の例
Example#3525 - pcntl_signal の例
Example#3526 - pcntl_sigprocmask の例
Example#3527 - pcntl_sigwaitinfo の例
Example#3528 - posix_access の例
Example#3529 - posix_ctermid の例
Example#3530 - posix_get_last_error の例
Example#3531 - posix_getcwd の例
Example#3532 - posix_getegid example
Example#3533 - posix_geteuid の例
Example#3534 - posix_getgid の例
Example#3535 - posix_getgrgid の使用例
Example#3536 - posix_getgrnam の使用例
Example#3537 - posix_getgroups の使用例
Example#3538 - posix_getlogin の使用例
Example#3539 - posix_getpgid の使用例
Example#3540 - posix_getpid の使用例
Example#3541 - posix_getppid の使用例
Example#3542 - posix_getpwnam の使用例
Example#3543 - posix_getpwuid の使用例
Example#3544 - posix_getrlimit の使用例
Example#3545 - posix_getsid の使用例
Example#3546 - posix_getuid の使用例
Example#3547 - posix_mknod の例
Example#3548 - posix_setegid の例
Example#3549 - posix_setgid の例
Example#3550 - posix_setuid の例
Example#3551 - posix_strerror の例
Example#3552 - posix_times の使用例
Example#3553 - posix_uname の使用例
Example#3554 - escapeshellarg の例
Example#3555 - escapeshellcmd の例
Example#3556 - exec の例
Example#3557 - A proc_open の例
Example#3558 - shell_exec の例
Example#3559 - system の例
Example#3560 - このスレッドを作ったスレッドあるいはプロセスの ID を返す
Example#3561 - このスレッドの ID を返す
Example#3562 - スレッドの状態を検出する
Example#3563 - スレッドの状態を検出する
Example#3564 - スレッドの状態を検出する
Example#3565 - スレッドの状態を検出する
Example#3566 - スレッドとのジョイン
Example#3567 - スレッドのロック
Example#3568 - 通知と待機
Example#3569 - スレッドの開始
Example#3570 - 同期処理
Example#3571 - スレッドのロック
Example#3572 - 通知と待機
Example#3573 - このワーカーを作ったスレッドあるいはプロセスの ID を返す
Example#3574 - ワーカーが実行終了を待っているオブジェクトの数を返す
Example#3575 - ワーカーの ID を返す
Example#3576 - ワーカーの状態を検出する
Example#3577 - ワーカーの状態を検出する
Example#3578 - ワーカーをシャットダウンする
Example#3579 - ワーカースレッド内で実行する Stackable をワーカーに渡す
Example#3580 - ワーカーの開始
Example#3581 - ワーカーからの Stackable の削除
Example#3582 - Stackable の状態の検出
Example#3583 - Stackable の状態の検出
Example#3584 - 同期処理
Example#3585 - オブジェクトストレージのロック
Example#3586 - 通知と待機
Example#3587 - protected メソッドの例。protected メソッドは、同時に複数のスレッドから実行できないようにする
Example#3588 - private メソッドの例。private メソッドは、その Thread、Worker あるいは Stackable の実行中にしか実行されないようにする
Example#3589 - ミューテックスの作成と破棄
Example#3590 - ミューテックスの作成と破棄
Example#3591 - ミューテックスのロックとアンロック
Example#3592 - ミューテックスのロックとアンロック
Example#3593 - ミューテックスのロックとアンロック
Example#3594 - 条件のブロードキャスト
Example#3595 - 条件の作成と破棄
Example#3596 - 条件の作成と破棄
Example#3597 - 条件の通知
Example#3598 - 条件の待機
Example#3599 -
Example#3600 - 共有メモリ操作の概要
Example#3601 - 共有メモリブロックを閉じる
Example#3602 - 共有メモリブロックの削除
Example#3603 - 共有メモリブロックを新規に作成する
Example#3604 - 共有メモリブロックを読み込む
Example#3605 - 共有メモリブロックの大きさを得る
Example#3606 - 共有メモリブロックに書き込む
Example#3607 - geoip_continent_code_by_name の例
Example#3608 - geoip_country_code_by_name の例
Example#3609 - geoip_country_code3_by_name の例
Example#3610 - geoip_country_name_by_name の例
Example#3611 - geoip_database_info の例
Example#3612 - geoip_db_avail の例
Example#3613 - geoip_db_filename の例
Example#3614 - geoip_db_get_all_info の例
Example#3615 - geoip_db_get_all_info の例
Example#3616 - geoip_id_by_name の例
Example#3617 - geoip_isp_by_name の例
Example#3618 - geoip_org_by_name の例
Example#3619 - geoip_record_by_name の例
Example#3620 - geoip_region_by_name の例
Example#3621 - US/Canada の地域コードを使用した geoip_region_name_by_code の例
Example#3622 - FIPS コードを使用した geoip_region_name_by_code の例
Example#3623 - US/Canada の地域コードを使用した geoip_time_zone_by_country_and_region の例
Example#3624 - FIPS コードを使用した geoip_time_zone_by_country_and_region の例
Example#3625 - JsonSerializable::jsonSerialize で配列を返す例
Example#3626 - JsonSerializable::jsonSerialize で連想配列を返す例
Example#3627 - JsonSerializable::jsonSerialize で整数値を返す例
Example#3628 - JsonSerializable::jsonSerialize で文字列を返す例
Example#3629 - json_decode の例
Example#3630 - 無効なオブジェクトプロパティへのアクセス
Example#3631 - json_decode でのありがちな間違い
Example#3632 - depth エラー
Example#3633 - json_decode で大きな整数値を扱う例
Example#3634 - json_encode の例
Example#3635 - json_encode で、利用中のいくつかのオプションを表示する例
Example#3636 - シーケンシャルな配列とそうでない配列の例
Example#3637 - json_last_error の例
Example#3638 - json_last_error と json_encode の組み合わせ
Example#3639 - Judy array example
Example#3640 - Lua::assignの例
Example#3641 - Lua::callの例
Example#3642 - Lua::evalの例
Example#3643 - Lua::registerCallbackの例
Example#3644 - LuaClosure::__invokeの例
Example#3645 - constant の例
Example#3646 - 定数の定義
Example#3647 - 定数のチェック
Example#3648 - eval の例 - 簡単なテキストのマージ
Example#3649 - exit の例
Example#3650 - exit でステータスを指定する例
Example#3651 - シャットダウン関数やデストラクタが実行される例
Example#3652 - ユーザーのブラウザについての全情報の一覧
Example#3653 - __halt_compiler の例
Example#3654 - highlight_string の例
Example#3655 - ignore_user_abort の例
Example#3656 - pack の例
Example#3657 - php_strip_whitespace の例
Example#3658 - sleep の例
Example#3659 - sys_getloadavg の例
Example#3660 - time_nanosleep の例
Example#3661 - time_sleep_until の例
Example#3662 - uniqid の例
Example#3663 - unpack の例
Example#3664 - unpack でのリピータの例
Example#3665 - unpack で名前のないキーを扱う例
Example#3666 - usleep の例
Example#3667 - parsekit_compile_file の例
Example#3668 - parsekit_compile_string の例
Example#3669 - parsekit_func_arginfo の例
Example#3670 - SplDoublyLinkedList::__construct の例
Example#3671 - SplStack::__construct の例
Example#3672 - SplQueue::__construct の例
Example#3673 - SplQueue による効率的なタスクの処理
Example#3674 - SplFixedArray の使用例
Example#3675 - SplFixedArray::__construct の例
Example#3676 - SplFixedArray::count の例
Example#3677 - SplFixedArray::fromArray の例
Example#3678 - SplFixedArray::getSize の例
Example#3679 - SplFixedArray::setSize の例
Example#3680 - SplFixedArray::toArray の例
Example#3681 - SplObjectStorage をセットとして使用
Example#3682 - SplObjectStorage をマップとして使用
Example#3683 - SplObjectStorage::addAll の例
Example#3684 - SplObjectStorage::attach の例
Example#3685 - SplObjectStorage::contains の例
Example#3686 - SplObjectStorage::count の例
Example#3687 - SplObjectStorage::current の例
Example#3688 - SplObjectStorage::detach の例
Example#3689 - SplObjectStorage::getHash の例
Example#3690 - SplObjectStorage::getInfo の例
Example#3691 - SplObjectStorage::key の例
Example#3692 - SplObjectStorage::next の例
Example#3693 - SplObjectStorage::offsetExists の例
Example#3694 - SplObjectStorage::offsetGet の例
Example#3695 - SplObjectStorage::offsetSet の例
Example#3696 - SplObjectStorage::offsetUnset の例
Example#3697 - SplObjectStorage::removeAll の例
Example#3698 - SplObjectStorage::removeAllExcept の例
Example#3699 - SplObjectStorage::rewind の例
Example#3700 - SplObjectStorage::serialize の例
Example#3701 - SplObjectStorage::setInfo の例
Example#3702 - SplObjectStorage::unserialize の例
Example#3703 - SplObjectStorage::valid の例
Example#3704 - AppendIterator::append の例
Example#3705 - AppendIterator の foreach での使用例
Example#3706 - AppendIterator API による AppendIterator の処理
Example#3707 - AppendIterator::getInnerIterator の例
Example#3708 - AppendIterator.getIteratorIndex の基本的な例
Example#3709 - AppendIterator::key の基本的な例
Example#3710 - ArrayIterator::current の例
Example#3711 - ArrayIterator::key の例
Example#3712 - ArrayIterator::next の例
Example#3713 - ArrayIterator::rewind の例
Example#3714 - ArrayIterator::valid の例
Example#3715 - 利用可能なコールバック引数
Example#3716 - コールバックの基本例
Example#3717 - DirectoryIterator::__construct の例
Example#3718 - DirectoryIterator::current の例
Example#3719 - DirectoryIterator::getATime の例
Example#3720 - DirectoryIterator::getBasename の例
Example#3721 - DirectoryIterator::getCTime の例
Example#3722 - DirectoryIterator::getExtension の例
Example#3723 -
Example#3724 - DirectoryIterator::getFilename の例
Example#3725 - DirectoryIterator::getGroup の例
Example#3726 - DirectoryIterator::getInode の例
Example#3727 - DirectoryIterator::getMTime の例
Example#3728 - DirectoryIterator::getOwner の例
Example#3729 - DirectoryIterator::getPath の例
Example#3730 - DirectoryIterator::getPathname の例
Example#3731 - DirectoryIterator::getPerms の例
Example#3732 - DirectoryIterator::getSize の例
Example#3733 - DirectoryIterator::getType の例
Example#3734 - DirectoryIterator::isDir の例
Example#3735 - DirectoryIterator::isDot の例
Example#3736 - DirectoryIterator::isExecutable の例
Example#3737 - DirectoryIterator::isFile の例
Example#3738 - DirectoryIterator::isLink の例
Example#3739 - DirectoryIterator::isReadable の例
Example#3740 - DirectoryIterator::isWritable の例
Example#3741 - DirectoryIterator::key の例
Example#3742 - DirectoryIterator::next の例
Example#3743 - DirectoryIterator::rewind の例
Example#3744 - DirectoryIterator::seek の例
Example#3745 - DirectoryIterator::__toString の例
Example#3746 - DirectoryIterator::valid の例
Example#3747 - FilesystemIterator::__construct の例
Example#3748 - FilesystemIterator::current の例
Example#3749 - FilesystemIterator::key の例
Example#3750 - FilesystemIterator::next の例
Example#3751 - FilesystemIterator::rewind の例
Example#3752 - FilesystemIterator::key の例
Example#3753 - FilterIterator::accept の例
Example#3754 - GlobIterator の例
Example#3755 - GlobIterator::count の例
Example#3756 - InfiniteIterator::__construct の例
Example#3757 - LimitIterator の使用例
Example#3758 - LimitIterator::__construct の例
Example#3759 - LimitIterator::getPosition の例
Example#3760 - MultipleIterator の反復処理
Example#3761 - NoRewindIterator::__construct の例
Example#3762 - NoRewindIterator::rewind の例
Example#3763 - RecursiveArrayIterator::getChildren の例
Example#3764 - RecursiveArrayIterator::hasChildren の例
Example#3765 - 利用可能なコールバック引数
Example#3766 - 再帰コールバックの基本例
Example#3767 - RecursiveCallbackFilterIterator::hasChildren の基本的な使用例
Example#3768 - RecursiveDirectoryIterator の例
Example#3769 - RecursiveFilterIterator の基本例
Example#3770 - RecursiveFilterIterator の例
Example#3771 - RecursiveIteratorIterator の反復処理
Example#3772 - RecursiveRegexIterator::__construct の例
Example#3773 - RecursiveRegexIterator::getChildren の例
Example#3774 - RecursiveRegexIterator::hasChildren の例
Example#3775 - RegexIterator::accept の例
Example#3776 - RegexIterator::__construct の例
Example#3777 - RegexIterator::getFlags の例
Example#3778 - RegexIterator::getMode の例
Example#3779 - RegexIterator::getPregFlags の例
Example#3780 - RegexIterator::setFlags の例
Example#3781 - RegexIterator::setMode の例
Example#3782 - RegexIterator::setPregFlags の例
Example#3783 - Countable::count の例
Example#3784 - 基本的な使用法
Example#3785 - SeekableIterator::seek の例
Example#3786 - class_implements の例
Example#3787 - class_parents の例
Example#3788 - class_uses の例
Example#3789 - iterator_apply の例
Example#3790 - iterator_count の例
Example#3791 - iterator_to_array の例
Example#3792 - spl_autoload_register を __autoload 関数の代わりに使う例
Example#3793 - spl_autoload_register でクラスをロードしない例
Example#3794 - spl_classes の例
Example#3795 - spl_object_hash の例
Example#3796 - SplFileInfo::__construct の例
Example#3797 - SplFileInfo::getBasename の例
Example#3798 - SplFileInfo::getCTime の例
Example#3799 - SplFileInfo::getExtension の例
Example#3800 -
Example#3801 - SplFileInfo::getFilename の例
Example#3802 - SplFileInfo::getGroup の例
Example#3803 - SplFileInfo::getLinkTarget の例
Example#3804 - SplFileInfo::getOwner の例
Example#3805 - SplFileInfo::getPath の例
Example#3806 - SplFileInfo::getPathInfo の例
Example#3807 - SplFileInfo::getPathname の例
Example#3808 - SplFileInfo::getPerms の例
Example#3809 - SplFileInfo::getRealPath の例
Example#3810 - SplFileInfo::getType の例
Example#3811 - SplFileInfo::isDir の例
Example#3812 - SplFileInfo::isExecutable の例
Example#3813 - SplFileInfo::isFile の例
Example#3814 - SplFileInfo::isLink の例
Example#3815 - SplFileInfo::isReadable の例
Example#3816 - SplFileInfo::openFile の例
Example#3817 - SplFileInfo::setFileClass の例
Example#3818 - SplFileInfo::setFileClass の例
Example#3819 - SplFileInfo::__toString の例
Example#3820 - SplFileObject::__construct の例
Example#3821 - SplFileObject::current の例
Example#3822 - SplFileObject::eof の例
Example#3823 - SplFileObject::fflush の例
Example#3824 - SplFileObject::fgetc の例
Example#3825 - SplFileObject::fgetcsv の例
Example#3826 - SplFileObject::READ_CSV の例
Example#3827 - SplFileObject::fgets の例
Example#3828 - SplFileObject::fgetss の例
Example#3829 - SplFileObject::flock の例
Example#3830 - SplFileObject::fpassthru の例
Example#3831 - SplFileObject::fputcsv の例
Example#3832 - SplFileObject::fscanf の例
Example#3833 - SplFileObject::fseek の例
Example#3834 - SplFileObject::fstat の例
Example#3835 - SplFileObject::ftell の例
Example#3836 - SplFileObject::ftruncate の例
Example#3837 - SplFileObject::fwrite の例
Example#3838 - SplFileObject::getCsvControl の例
Example#3839 - SplFileObject::getFlags の例
Example#3840 - SplFileObject::getMaxLineLen の例
Example#3841 - SplFileObject::key の例
Example#3842 - SplFileObject::setMaxLineLen による SplFileObject::key の例
Example#3843 - SplFileObject::next の例
Example#3844 - SplFileObject::rewind の例
Example#3845 - SplFileObject::seek の例
Example#3846 - SplFileObject::setCsvControl の例
Example#3847 - SplFileObject::setFlags の例
Example#3848 - SplFileObject::setMaxLineLen の例
Example#3849 - SplFileObject::valid の例
Example#3850 - SplTempFileObject の例
Example#3851 - ArrayObject::append の例
Example#3852 - ArrayObject::asort の例
Example#3853 - ArrayObject::__construct の例
Example#3854 - ArrayObject::count の例
Example#3855 - ArrayObject::exchangeArray の例
Example#3856 - ArrayObject::getArrayCopy の例
Example#3857 - ArrayObject::getFlags の例
Example#3858 - ArrayObject::getIterator の例
Example#3859 - ArrayObject::getIteratorClass の例
Example#3860 - ArrayObject::ksort の例
Example#3861 - ArrayObject::natcasesort の例
Example#3862 - ArrayObject::natsort の例
Example#3863 - ArrayObject::offsetExists の例
Example#3864 - ArrayObject::offsetGet の例
Example#3865 - ArrayObject::offsetSet の例
Example#3866 - ArrayObject::offsetUnset の例
Example#3867 - ArrayObject::serialize の例
Example#3868 - ArrayObject::setFlags の例
Example#3869 - ArrayObject::setIteratorClass の例
Example#3870 - ArrayObject::uasort の例
Example#3871 - ArrayObject::uksort の例
Example#3872 - SplInt の使用例
Example#3873 - SplFloat の使用例
Example#3874 - SplEnum の使用例
Example#3875 - SplEnum::getConstList の例
Example#3876 - SplBool の使用例
Example#3877 - SplString の使用例
Example#3878 - file_get_contents を使って さまざまな場所からデータを取得する
Example#3879 - https のサーバーに対して POST リクエストを行う
Example#3880 - データを圧縮ファイルに書き込む
Example#3881 - グローバル変数の読み書き用のストリーム
Example#3882 - tar アーカイブのファイル一覧
Example#3883 - stream_bucket_prepend の例
Example#3884 - stream_context_create の使用
Example#3885 - stream_context_get_default の使用
Example#3886 - stream_context_get_options の例
Example#3887 - stream_context_get_params の例
Example#3888 - stream_context_set_default の例
Example#3889 - stream_copy_to_stream の例
Example#3890 - フィルタの適用される場所を制御する
Example#3891 - foo-bar.txt ストリームの文字を大文字化するフィルタ
Example#3892 - 複数のフィルタ名に対応する一般的なフィルタクラスを登録する
Example#3893 - ストリームの再フィルタリングを動的に行う
Example#3894 - stream_get_contents の例
Example#3895 - stream_get_filters を使用する
Example#3896 - stream_get_meta_data の例
Example#3897 - stream_get_transports を使った例
Example#3898 - stream_get_wrappers の例
Example#3899 - ストリームラッパーのが存在するかどうかを調べる
Example#3900 - stream_is_local の例
Example#3901 - stream_notification_callback の例
Example#3902 - コマンドラインのダウンロードツール用のシンプルなプログレスバー
Example#3903 - stream_resolve_include_path の例
Example#3904 - stream_select の例
Example#3905 - stream_set_timeout の例
Example#3906 - stream_set_write_buffer の例
Example#3907 - stream_socket_client の例
Example#3908 - UDP 接続の使用
Example#3909 - stream_socket_enable_crypto の例
Example#3910 - stream_socket_pair の例
Example#3911 - stream_socket_recvfrom の例
Example#3912 - stream_socket_sendto の例
Example#3913 - TCP サーバーソケットの使用
Example#3914 - UDP サーバーソケットを利用する
Example#3915 - stream_socket_shutdown の例
Example#3916 - ストリームラッパーの登録方法
Example#3917 - Tidy の基本的な使用法
Example#3918 - tidy::getBody の例
Example#3919 - tidy::cleanrepair の例
Example#3920 - tidy::__construct の例
Example#3921 - tidy::diagnose の例
Example#3922 - tidy_get_error_buffer の例
Example#3923 - tidy::getConfig の例
Example#3924 - tidy_getopt の例
Example#3925 - すべてのオプションについてのドキュメントとデフォルト値をプリントする
Example#3926 - tidy::getStatus の例
Example#3927 - tidy::head の例
Example#3928 - tidy::html の例
Example#3929 - tidy::parseFile の例
Example#3930 - tidy::parseString の例
Example#3931 - tidy::repairFile の例
Example#3932 - tidy::repairString の例
Example#3933 - tidy::root の例
Example#3934 - tidyNode::hasChildren の例
Example#3935 - tidyNode::hasChildren の例
Example#3936 - tidyNode::hasSiblings の例
Example#3937 - HTML ドキュメントからの ASP コードの抽出
Example#3938 - HTML ドキュメントからのコメントの抽出
Example#3939 - HTML ドキュメントからの HTML コードの抽出
Example#3940 - HTML ドキュメントからの JSTE コードの抽出
Example#3941 - HTML ドキュメントからの PHP コードの抽出
Example#3942 - HTML ドキュメントからのテキストの抽出
Example#3943 - ob_tidyhandler の例
Example#3944 - tidy_access_count の例
Example#3945 - tidy_config_count の例
Example#3946 - tidy_error_count の例
Example#3947 - tidy_get_output の例
Example#3948 - tidy_setopt の例
Example#3949 - tidy_warning_count の例
Example#3950 - tokenizer によるコメントの削除
Example#3951 - token_get_all の例
Example#3952 - token_name の例
Example#3953 - base64_decode の例
Example#3954 - base64_encode の例
Example#3955 - get_headers の例
Example#3956 - get_headers で HEAD を使う例
Example#3957 - get_meta_tags が何をパースするのか
Example#3958 - get_meta_tags が何を返すのか
Example#3959 - http_build_query の簡単な使用法
Example#3960 - 数値インデックス要素の場合での http_build_query
Example#3961 - 複雑な配列の場合での http_build_query
Example#3962 - オブジェクトの場合の http_build_query の使用
Example#3963 - parse_url の例
Example#3964 - parse_url でスキームを省略した例
Example#3965 - rawurldecode の例
Example#3966 - FTP URL へのパスワードの埋め込み
Example#3967 - rawurlencode の例 2
Example#3968 - urldecode の例
Example#3969 - urlencode の例
Example#3970 - urlencode および htmlentities の例
Example#3971 - 基本的な Javascript の実行
Example#3972 - Yaml の例
Example#3973 - パースコールバックの例
Example#3974 - Emit callback example
Example#3975 - yaml_emit の例
Example#3976 - yaml_parse の例
Example#3977 - 標準的なアプリケーションのディレクトリ構造
Example#3978 - エントリ
Example#3979 - リライトルール
Example#3980 - アプリケーションの設定
Example#3981 - デフォルトのコントローラ
Example#3982 - デフォルトのビューテンプレート
Example#3983 - アプリケーションの実行結果
Example#3984 - 配列による yaf の設定
Example#3985 - ini ファイルによる yaf の設定
Example#3986 - Bootstrap の例
Example#3987 - Yaf_Application::bootstrap の例
Example#3988 - Yaf_Application::clearLastError の例
Example#3989 - ini ファイルの例
Example#3990 - Yaf_Application::__construct の例
Example#3991 - Yaf_Application::__construct の例
Example#3992 - Yaf_Application::environ の例
Example#3993 - Yaf_Application::execute の例
Example#3994 - Yaf_Application::getConfig の例
Example#3995 - Yaf_Application::getDispatcher の例
Example#3996 - Yaf_Application::getLastErrorMsg の例
Example#3997 - Yaf_Application::getLastErrorNo の例
Example#3998 - Yaf_Application::getModules の例
Example#3999 - ブートストラップの例
Example#4000 - Yaf_Dispatcher::autoRender の例
Example#4001 - Yaf_Dispatcher::catchException の例
Example#4002 - Yaf_Dispatcher::registerPlugin の例
Example#4003 - カスタムビューエンジンの例
Example#4004 - Yaf_Dispatcher::setView の例
Example#4005 - Yaf_Dispatcher::throwexception の例
Example#4006 - Yaf_Dispatcher::throwexception の例
Example#4007 - Yaf_Config_Ini の例
Example#4008 - 別ファイルでのアクションの定義
Example#4009 - Dummy_action.php
Example#4010 - Yaf_Action_Abstract::execute の例
Example#4011 - Yaf_Action_Abstract::execute の例
Example#4012 - Yaf_View_Simple::assign の例
Example#4013 - テンプレートの例
Example#4014 - Yaf_View_Simple::assignRef の例
Example#4015 - テンプレートの例
Example#4016 - Yaf_View_Simple::clear の例
Example#4017 - Yaf_View_Simple::__constructor の例
Example#4018 - Yaf_View_Simple::__set の例
Example#4019 - 設定の例
Example#4020 - localnamespace の登録
Example#4021 - クラスのロード
Example#4022 - 名前空間つきのクラスのロード
Example#4023 - MVC クラスのロード
Example#4024 - MVC クラスかどうかの区別
Example#4025 - MVC のロード
Example#4026 - Yaf_Loader::registerLocalNamespace の例
Example#4027 - プラグインの例
Example#4028 - Yaf_Plugin_Abstract::routerShutdown の例
Example#4029 - Yaf_Response_Abstract::appendBody の例
Example#4030 - Yaf_Response_Abstract::getBody の例
Example#4031 - Yaf_Response_Abstract::prependBody の例
Example#4032 - Yaf_Response_Abstract::response の例
Example#4033 - Yaf_Response_Abstract::setBody の例
Example#4034 - Yaf_Route_Map の例
Example#4035 - Yaf_Route_Map の例
Example#4036 - Yaf_Route_Map の例
Example#4037 - Yaf_Route_Regex の例
Example#4038 - Yaf_Route_Regex の例
Example#4039 - Yaf_Route_Rewrite の例
Example#4040 - Yaf_Route_Rewrite の例
Example#4041 - Apache 用のリライトルール
Example#4042 - Apache 用のリライトルール
Example#4043 - Lighttpd 用のリライトルール
Example#4044 - Nginx 用のリライトルール
Example#4045 - Yaf_Route_Static のデフォルトルート
Example#4046 - application.ini の例
Example#4047 - Yaf_Dispatcher::autoConfig の例
Example#4048 - Yaf_Dispatcher::autoRender の例
Example#4049 - ブートストラップでのルートの登録
Example#4050 - プラグイン Dummy.php (application.directory/plugins 配下)
Example#4051 - Yaf_Route_Simple::route の例
Example#4052 - Yaf_Route_Simple::route の例
Example#4053 - Yaf_Route_Static::route の例
Example#4054 - Yaf_Route_Supervar の例
Example#4055 - taint の例
Example#4056 - AMQP の例
Example#4057 - AMQPConnection::connect の例
Example#4058 - AMQPConnection::__construct の例
Example#4059 - AMQPConnection::disconnect の例
Example#4060 - AMQPConnection::isConnected の例
Example#4061 - AMQPConnection::reconnect の例
Example#4062 - AMQPConnection::setHost の例
Example#4063 - AMQPConnection::setLogin の例
Example#4064 - AMQPConnection::setPassword の例
Example#4065 - AMQPConnection::setPort の例
Example#4066 - AMQPConnection::setTimeout の例
Example#4067 - AMQPConnection::setVhost の例
Example#4068 - AMQPExchange::declare の例
Example#4069 - AMQPExchange::delete の例
Example#4070 - AMQPQueue::ack と AMQPQueue::get の例
Example#4071 - AMQPQueue::ack と AMQPQueue::consume の例
Example#4072 - AMQPQueue::consume の例
Example#4073 - AMQPQueue::get の例
Example#4074 - chdb ファイルを作成
Example#4075 - chdb ファイルを読み込んで検索
Example#4076 - chdb::get の例
Example#4077 - chdb_create の例
Example#4078 - PHP の cURL モジュールを使用して example.com のホームページを取得する
Example#4079 - 新しい cURL セッションの初期化とウェブページの取得
Example#4080 - cURL ハンドルのコピー
Example#4081 - curl_errno の例
Example#4082 - curl_error の例
Example#4083 - ウェブページの取得
Example#4084 - curl_getinfo の例
Example#4085 - 新しい cURL セッションを初期化し、ウェブページを取得する
Example#4086 - curl_multi_add_handle の例
Example#4087 - curl_multi_close の例
Example#4088 - curl_multi_exec の例
Example#4089 - curl_multi_info_read の例
Example#4090 - curl_multi_init の例
Example#4091 - 新規に CURL セッションを初期化、ウェブページを取得する
Example#4092 - curl_setopt_array の独自実装
Example#4093 - 新規に cURL セッションを初期化、ウェブページを取得する
Example#4094 - ファイルのアップロード
Example#4095 - curl_version の例
Example#4096 - FTP の例
Example#4097 - ftp_alloc の例
Example#4098 - ftp_cdup の例
Example#4099 - ftp_chdir の例
Example#4100 - ftp_chmod の例
Example#4101 - ftp_close の例
Example#4102 - ftp_connect の例
Example#4103 - ftp_delete の例
Example#4104 - ftp_exec の例
Example#4105 - ftp_fget の例
Example#4106 - ftp_fput の例
Example#4107 - ftp_get_option の例
Example#4108 - ftp_get の例
Example#4109 - ftp_login の例
Example#4110 - ftp_mdtm の例
Example#4111 - ftp_mkdir の例
Example#4112 - ftp_nb_continue の例
Example#4113 - ftp_nb_fget の例
Example#4114 - ftp_nb_fput の例
Example#4115 - ftp_nb_get の例
Example#4116 - ftp_nb_get でダウンロードを再開する
Example#4117 - ftp_nb_get を用い、ファイルの 100 バイト目以降から ダウンロードを再開する
Example#4118 - ftp_nb_put の例
Example#4119 - ftp_nb_put でアップロードを再開する
Example#4120 - ftp_nlist の例
Example#4121 - ftp_pasv の例
Example#4122 - ftp_put の例
Example#4123 - ftp_pwd の例
Example#4124 - ftp_raw を用いて FTP サーバーに手動でログインする
Example#4125 - ftp_rawlist の例
Example#4126 - ftp_rename の例
Example#4127 - ftp_rmdir の例
Example#4128 - ftp_set_option の例
Example#4129 - SITE コマンドを FTP サーバーに送信する
Example#4130 - ftp_size の例
Example#4131 - ftp_ssl_connect の例
Example#4132 - ftp_systype の例
Example#4133 - Basic Gearman client and worker
Example#4134 - Basic Gearman client and worker, background
Example#4135 - Basic Gearman client and worker, submitting tasks
Example#4136 - Adding two job servers
Example#4137 - Add two job servers
Example#4138 - Basic submission of two tasks
Example#4139 - Basic submission of two tasks with passing application context
Example#4140 - Two tasks, one background and one not
Example#4141 - A high priority task along with two normal tasks
Example#4142 - A low priority task along with two normal tasks
Example#4143 - Monitor completion of multiple background tasks
Example#4144 - Simple job submission with immediate return
Example#4145 - Submitting a job and retrieving incremental status
Example#4146 - Submit and monitor a background job
Example#4147 - Simple job submission with immediate return
Example#4148 - Submitting a job and retrieving incremental status
Example#4149 - Get the status of a long running job
Example#4150 - Monitor the status of a long running background job
Example#4151 - Simple worker making use of extra application context data
Example#4152 - Add alternate Gearman servers
Example#4153 - Add two job servers
Example#4154 - GearmanWorker::setId example
Example#4155 - A simple worker with a 5 second timeout
Example#4156 - Running worker in non-blocking mode
Example#4157 - GearmanWorker::work example
Example#4158 - gopher://gopher.example.com/ からの出力を以下のように仮定する
Example#4159 - gopher_parsedir の使用例
Example#4160 - Search for all UPnP devices and services.
Example#4161 - Implementing light server
Example#4162 - Implementing light client
Example#4163 - Create new UPnP context and get IP address of the host
Example#4164 - Create new UPnP context and get port number
Example#4165 - Create new UPnP context and set host path
Example#4166 - Create new UPnP context
Example#4167 - Create new UPnP context and set callback
Example#4168 - Create new UPnP context and start browsing
Example#4169 - Create new UPnP context and start browsing
Example#4170 - Create new UPnP context and get device info service
Example#4171 - Create new UPnP context and get device info service
Example#4172 - HttpDeflateStream の例
Example#4173 - HttpInflateStream の例
Example#4174 - HttpRequest::addCookies の例
Example#4175 - GET example
Example#4176 - POST example
Example#4177 - HttpRequestPool の例
Example#4178 - HttpRequestPool::socketPerform の例
Example#4179 - HttpResponse::capture の例
Example#4180 - HttpResponse::send の例
Example#4181 - http_cache_etag の例
Example#4182 - http_cache_last_modified の例
Example#4183 - http_chunked_decode の例
Example#4184 - http_support の例
Example#4185 - http_negotiate_charset の使用法
Example#4186 - http_negotiate_content_type の使用例
Example#4187 - http_negotiate_language の使用法
Example#4188 - http_parse_cookie の使用法
Example#4189 - http_parse_headers の使用法
Example#4190 - http_parse_message の使用法
Example#4191 - http_parse_params の例
Example#4192 - http_persistent_handles_count の例
Example#4193 - http_persistent_handles_ident の例
Example#4194 - http_get の例
Example#4195 - http_post_fields の例
Example#4196 - http_redirect の例
Example#4197 - http_send_file の例
Example#4198 - http_throttle の例
Example#4199 - http_build_url の例
Example#4200 - 属性を修正する
Example#4201 - 完全に新規の属性を追加する
Example#4202 - Title 属性を修正する
Example#4203 - Title 属性を修正する
Example#4204 - 属性を削除する
Example#4205 - オブジェクトの取得
Example#4206 - Java の例
Example#4207 - AWT Example
Example#4208 - Java 例外ハンドラ
Example#4209 - LDAP 検索の例
Example#4210 - 認証型バインドの例
Example#4211 - LDAP バインドの使用
Example#4212 - LDAP 匿名バインドの使用
Example#4213 - パスワード確認の例
Example#4214 - LDAP サーバーに接続する例
Example#4215 - LDAP サーバーへのセキュアな接続の例
Example#4216 - LDAP ページネーション
Example#4217 - LDAP ページネーション
Example#4218 - ldap-count-entries の例
Example#4219 - 全ての LDAP エラーメッセージに番号をふる
Example#4220 - エラーを生成し、取得する
Example#4221 - 特定のディレクトリエントリに関して保持されている属性のリストを表示
Example#4222 - プロトコルのバージョンを調べる
Example#4223 - あるディレクトリエントリの全ての "mail" 属性の一覧を表示する
Example#4224 - ある組織の全ての組織単位を一覧表示する
Example#4225 - LDAP 検索
Example#4226 - プロトコルバージョンの設定
Example#4227 - サーバーコントロールの設定
Example#4228 - LDAP のソート
Example#4229 - memcache 拡張モジュールの概要
Example#4230 - memcache セッションハンドラの使用例
Example#4231 - Memcache::add の例
Example#4232 - Memcache::addServer の例
Example#4233 - Memcache::close の例
Example#4234 - Memcache::connect の例
Example#4235 - Memcache::decrement の例
Example#4236 - Memcache::delete の例
Example#4237 - Memcache::flush の例
Example#4238 - Memcache::get の例
Example#4239 - Memcache::getExtendedStats の例
Example#4240 - Memcache::getServerStatus の例
Example#4241 - Memcache::getVersion の例
Example#4242 - Memcache::increment の例
Example#4243 - Memcache::pconnect の例
Example#4244 - Memcache::replace の例
Example#4245 - Memcache::set の例
Example#4246 - Memcache::set の例
Example#4247 - Memcache::setCompressThreshold の例
Example#4248 - Memcache::setServerParams の例
Example#4249 - Result コールバックの例
Example#4250 - Read-through コールバックの例
Example#4251 - Memcached::addServer の例
Example#4252 - Memcached::addServers の例
Example#4253 - Memcached::append の例
Example#4254 - Memcached::cas の例
Example#4255 - Memcached オブジェクトの作成
Example#4256 - Memcached::decrement の例
Example#4257 - Memcached::delete の例
Example#4258 - Memcached::fetch の例
Example#4259 - Memcached::getDelayed の例
Example#4260 - Memcached::flush の例
Example#4261 - Memcached::get の例 #1
Example#4262 - Memcached::get の例 #2
Example#4263 - Memcached::getDelayed の例
Example#4264 - Memcached::getMulti の例
Example#4265 - Memcached::GET_PRESERVE_ORDER の例
Example#4266 - Memcached オプションの取得
Example#4267 - Memcached::getResultCode の例
Example#4268 - Memcached::getResultMessageメソッドの例
Example#4269 - Memcached::getServerByKey の例
Example#4270 - Memcached::getServerList の例
Example#4271 - Memcached::getStats の例
Example#4272 - Memcached::getVersion の例
Example#4273 - Memcached::increment の例
Example#4274 - Memcached::prepend の例
Example#4275 - Memcached::set の例
Example#4276 - Memcached::setByKey の例
Example#4277 - Memcached::setMulti の例
Example#4278 - Memcached オプションの設定
Example#4279 - Setting Memcached options
Example#4280 - mqseries_back の例
Example#4281 - mqseries_begin の例
Example#4282 - mqseries_close の例
Example#4283 - mqseries_cmit の例
Example#4284 - mqseries_conn の例
Example#4285 - mqseries_connx の例
Example#4286 - mqseries_connx で SSL 接続と OCSP Responder URL を使う例
Example#4287 - mqseries_disc の例
Example#4288 - mqseries_get の例
Example#4289 - mqseries_inq の例
Example#4290 - mqseries_open の例
Example#4291 - mqseries_put の例
Example#4292 - mqseries_strerror の例
Example#4293 - define_syslog_variables の例
Example#4294 - dns_get_record の使用
Example#4295 - dns_get_record と DNS_ANY の使用
Example#4296 - fsockopen の例
Example#4297 - UDP 接続の使用法
Example#4298 - 単純な gethostbyaddr の例
Example#4299 - 単純な gethostbyname の例
Example#4300 - gethostbynamel の例
Example#4301 - 簡単な gethostname 関数の使用例
Example#4302 - getprotobyname の例
Example#4303 - getservbyname の例
Example#4304 - header_register_callback の例
Example#4305 - 特定のヘッダを削除する
Example#4306 - 以前設定したすべてヘッダを削除する
Example#4307 - ダウンロードダイアログ
Example#4308 - キャッシュディレクティブ
Example#4309 - headers_list の使用例
Example#4310 - headers_sent 関数の使用例
Example#4311 - http_response_code の使用例
Example#4312 - inet_ntop の例
Example#4313 - inet_pton の例
Example#4314 - ip2long の例
Example#4315 - IP アドレスの表示
Example#4316 - setcookie での送信の例
Example#4317 - setcookie による削除の例
Example#4318 - setcookie と配列
Example#4319 - syslog の使用例
Example#4320 - Procedural usage of rrd
Example#4321 - OO usage of rrd
Example#4322 - RRDGraph::setOptions examples
Example#4323 - RRDUpdater::update examples
Example#4324 - 接続の作成、およびリモートの WebSphere MQSeries Messaging Server への接続
Example#4325 - 接続の作成、およびリモートの WebSphere Application Server への接続
Example#4326 - 接続の作成、および MQTT サーバーへの接続
Example#4327 - 単純なテキストのメッセージの作成
Example#4328 - デフォルト構文による、テキスト形式のプロパティの設定
Example#4329 - 型ヒントを使用したプロパティの設定
Example#4330 - メッセージのヘッダからのプロパティの取得
Example#4331 - キューへのメッセージの追加および応答の取得
Example#4332 - トピックに対する永続的な購読の作成
Example#4333 - WebSphere Platform Messaging (WPM) サーバーを使用したトピックの購読
Example#4334 - 永続的な購読による、配信されたデータの受信
Example#4335 - トピックへの永続的な購読の削除
Example#4336 - 結果を返さないメソッドからのエラーの処理
Example#4337 - 結果を返すメソッドからのエラーの処理
Example#4338 - 現在処理中の内容のコミット
Example#4339 - IBM MQSeries プロトコル (WMQ) を使用したメッセージングサーバーへの接続の作成
Example#4340 - トランザクション制御を指定し、 デフォルトのホストとポートを使用した接続の作成
Example#4341 - IBM WebSphere Platform Messaging プロトコル (WPM) を使用したメッセージングサーバーへの接続の作成
Example#4342 - 接続オブジェクトの作成およびメッセージングサーバーへの接続
Example#4343 - メッセージングサーバーからの接続の解除
Example#4344 - Using the error number and description properties
Example#4345 - エラー番号および説明の取得法
Example#4346 - メッセージングサーバーとの接続が存在するかどうかのチェック
Example#4347 - キューから次のメッセージを取得し、そのままメッセージをキューに残す
Example#4348 - キューから指定したメッセージを取得し、そのままメッセージをキューに残す
Example#4349 - キューからすべてのメッセージを取得し、そのままメッセージをキューに残す
Example#4350 - 相関 ID にマッチするメッセージをキューから取得する
Example#4351 - キューからのメッセージの取得
Example#4352 - オプションを指定して、キューからのメッセージの取得
Example#4353 - 購読からのメッセージの取得
Example#4354 - メッセージ ID を指定して、メッセージをキューから削除する
Example#4355 - 作業中の処理のキャンセル
Example#4356 - キューへのメッセージの送信
Example#4357 - トピックへのメッセージの投稿
Example#4358 - リクエストの送信と応答の受信
Example#4359 - デバッグ出力を有効にする
Example#4360 - デバッグ出力を無効にする
Example#4361 - トピックの購読
Example#4362 - 購読の削除
Example#4363 - メッセージ本文へのテキスト文字列の設定
Example#4364 - メッセージの作成
Example#4365 - 単純なテキストを含むメッセージの作成
Example#4366 - デフォルトの構文による、テキスト形式のプロパティの設定
Example#4367 - 型ヒントを使用することによる、テキスト形式のプロパティの設定
Example#4368 - プロパティに、メッセージの送信者を設定する
Example#4369 - メッセージからのプロパティの値の取得
Example#4370 - snmp_get_quick_print の例
Example#4371 - snmp_get_valueretrieval の使用法
Example#4372 - snmp_read_mib の使用法
Example#4373 - snmp_set_enum_print の使用法
Example#4374 - snmprealwalk の使用法
Example#4375 - snmp_set_quick_print の使用例
Example#4376 - snmp_set_valueretrieval の使用法
Example#4377 - snmp2_get の使用法
Example#4378 - snmp2_get_next の使用法
Example#4379 - snmp2_real_walk の使用法
Example#4380 - snmp2_set の使用法
Example#4381 - BITS SNMP オブジェクト ID を設定した snmp2_set の使用法
Example#4382 - snm2_pwalk の例
Example#4383 - snmp3_get の使用法
Example#4384 - snmp3_getnext の使用法
Example#4385 - snmp3_real_walk の使用法
Example#4386 - snmp3_set の使用法
Example#4387 - BITS SNMP オブジェクト ID を設定した snmp3_set の使用法
Example#4388 - snmp3_walk の例
Example#4389 - snmpget の使用例
Example#4390 - snmpgetnext の使用法
Example#4391 - snmprealwalk の使用法
Example#4392 - snmpset の使用法
Example#4393 - BITS SNMP オブジェクト ID を設定した snmpset の使用法
Example#4394 - snmpwalk の例
Example#4395 - snmpwalkoid の例
Example#4396 - SNMP::close の例
Example#4397 - sysLocation の取得
Example#4398 - 単一の SNMP オブジェクト
Example#4399 - 複数の SNMP オブジェクト
Example#4400 - SNMP::getErrno の例
Example#4401 - SNMP::getError の例
Example#4402 - 単一の SNMP オブジェクト
Example#4403 - 複数の SNMP オブジェクト
Example#4404 - 単一の SNMP オブジェクト ID の設定
Example#4405 - 単一の SNMP::set コールによる複数の値の設定
Example#4406 - BITS SNMP オブジェクト ID の設定による SNMP::set の使用法
Example#4407 - SNMP::setSecurity の例
Example#4408 - SNMP::walk の例
Example#4409 - suffix_as_key の例
Example#4410 - ソケットの例: 簡易 TCP/IP サーバー
Example#4411 - ソケットの例: 簡易 TCP/IP クライアント
Example#4412 - socket_bind を使用してソースアドレスを指定する
Example#4413 - socket_create_pair の例
Example#4414 - socket_create_pair での IPC の例
Example#4415 - socket_set_option の例
Example#4416 - socket_import_stream の例
Example#4417 - socket_last_error の例
Example#4418 - socket_recv の例
Example#4419 - socket_recvfrom の例
Example#4420 - socket_select での NULL の使用
Example#4421 - socket_select の返す結果を知る
Example#4422 - socket_select の例
Example#4423 - socket_sendto の例
Example#4424 - socket_set_block の例
Example#4425 - socket_set_nonblock の例
Example#4426 - socket_set_option の例
Example#4427 - socket_strerror の例
Example#4428 - ssh agent による認証
Example#4429 - ホスト公開鍵を使用した認証
Example#4430 - 認証メソッドの一覧の取得
Example#4431 - パスワードを用いた認証
Example#4432 - 公開鍵を用いた認証
Example#4433 - ssh2_connect の例
Example#4434 - コマンドの実行
Example#4435 - シェルをオープンし、それと関連付けられた stderr ストリームを処理する
Example#4436 - 既知の値に対するフィンガープリントのチェック
Example#4437 - どのメソッドでネゴシエートされたかの判定
Example#4438 - ssh2_publickey_add で公開鍵を追加する
Example#4439 - 認証済みの鍵の一覧を ssh2_publickey_list で表示する
Example#4440 - SCP 経由でのファイルのダウンロード
Example#4441 - SCP 経由でのファイルのアップロード
Example#4442 - リモートサーバー上でのディレクトリの作成
Example#4443 - SFTP 経由でのシンボリックリンクの情報の取得
Example#4444 - リモートサーバー上へのディレクトリの作成
Example#4445 - シンボリックリンクの読み込み
Example#4446 - パス名の解決
Example#4447 - sftp 経由でのファイルの改名
Example#4448 - リモートサーバー上のディレクトリの削除
Example#4449 - SFTP 経由でのファイルの情報の取得
Example#4450 - シンボリックリンクの作成
Example#4451 - ファイルの削除
Example#4452 - SFTP 経由でのファイルのオープン
Example#4453 - コマンドの実行
Example#4454 - 任意のホストへのトンネルのオープン
Example#4455 - オブジェクト指向型
Example#4456 - 手続き型
Example#4457 - stomp_connect_error example
Example#4458 - stomp_version example
Example#4459 - オブジェクト指向型
Example#4460 - 手続き型
Example#4461 - オブジェクト指向型
Example#4462 - 手続き型
Example#4463 - オブジェクト指向型
Example#4464 - 手続き型
Example#4465 - オブジェクト指向型
Example#4466 - 手続き型
Example#4467 - オブジェクト指向型
Example#4468 - 手続き型
Example#4469 - オブジェクト指向型
Example#4470 - 手続き型
Example#4471 - オブジェクト指向型
Example#4472 - 手続き型
Example#4473 - オブジェクト指向型
Example#4474 - 手続き型
Example#4475 - オブジェクト指向型
Example#4476 - 手続き型
Example#4477 - Train from array
Example#4478 - Train from a file
Example#4479 - svn_add の例
Example#4480 - デフォルトの認証の例
Example#4481 - svn_blame の例
Example#4482 - 基本的な例
Example#4483 - 基本的な例
Example#4484 - 基本的な例
Example#4485 - 基本的な例
Example#4486 - 基本的な例
Example#4487 - 基本的な例
Example#4488 - あるパスのふたつのリビジョンの差分の取得
Example#4489 - ローカルファイルの差分の取得
Example#4490 - svn_export の例
Example#4491 - 基本的な例
Example#4492 - svn_log の例
Example#4493 - svn_ls の例
Example#4494 - 基本的な使用例
Example#4495 - 基本的な例
Example#4496 - ローカルホストからの全接続を拒否する
Example#4497 - URL を禁止する
Example#4498 - 統計のスナップショットをを取得する
Example#4499 - varnish の共用メモリログを読み取る
Example#4500 - VarnishAdmin::__construct の例
Example#4501 - YAZ による並列検索
Example#4502 - CCL 設定
Example#4503 - CCL のパース
Example#4504 - レコードの更新
Example#4505 - GRS-1 レコードの配列
Example#4506 - MARCXML の使用
Example#4507 - タイトルをスキャンする PHP 関数
Example#4508 - クエリの例
Example#4509 - ソート条件
Example#4510 - NIS エラーの例
Example#4511 - NIS の最初のエントリを取得する例
Example#4512 - デフォルトドメインの例
Example#4513 - NIS マスタの例
Example#4514 - NIS 検索の例
Example#4515 - NIS next の例
Example#4516 - NIS 呼出番号の例
Example#4517 -
Example#4518 - udm_api_version の例
Example#4519 - udm_cat_list の例
Example#4520 - 現在のカテゴリへのパスは以下の形式で指定します。 '> Root > Sport > Auto > Ferrari'
Example#4521 - udm_load_ispell_data の例
Example#4522 - udm_load_ispell_data の例
Example#4523 - solr_get_version の例
Example#4524 - ブートストラップ・ファイルの内容
Example#4525 - インデックスに文書を追加
Example#4526 - ある文書を他の文書にマージ
Example#4527 - 文書を検索 - SolrObject レスポンス
Example#4528 - 文書を検索 - SolrDocument レスポンス
Example#4529 - 簡単な TermsComponent 例 - 基本
Example#4530 - 簡単な TermsComponent 例 - 接頭辞を使用
Example#4531 - 簡単な TermsComponent 例 - 最小の頻度を指定
Example#4532 - 簡単なファセット例
Example#4533 - 簡単なファセット例 - mincount を越える任意の項目と共に
Example#4534 - SSL 対応サーバーに接続
Example#4535 - SolrDocument::toArray の例
Example#4536 - SolrObject::__construct 例
Example#4537 - SolrObject::offsetUnset の例
Example#4538 - SolrClient::addDocument example
Example#4539 - SolrClient::addDocuments example
Example#4540 - SolrClient::__construct example
Example#4541 - SolrQuery::deleteByQuery example
Example#4542 - SolrClient::ping example
Example#4543 - SolrClient::query example
Example#4544 - SolrClient::request example
Example#4545 - SolrClient::setResponseWriter example
Example#4546 - SolrParams::setParam の例
Example#4547 - SolrQuery::addFacetField example
Example#4548 - SolrQuery::addFilterQuery example
Example#4549 - 基本的な使用例
Example#4550 - 基本的な検索クエリ
Example#4551 - Swish::__construct の例
Example#4552 - 基本的な Swish::getMetaList の例
Example#4553 - 基本的な Swish::getPropertyList の例
Example#4554 - 基本的な Swish::prepare の例
Example#4555 - 基本的な Swish::query の例
Example#4556 - 基本的な SwishResult::stem の例
Example#4557 - 基本的な SwishResults::getParsedWords の例
Example#4558 - 基本的な SwishResults::nextResult の例
Example#4559 - 基本的な SwishResults::seekResult の例
Example#4560 - 基本的な SwishSearch::execute の例
Example#4561 - 基本的な SwishSearch::resetLimit の例
Example#4562 - 基本的な SwishSearch::setLimit の例
Example#4563 - 基本的な SwishSearch::setPhraseDelimiter の例
Example#4564 - 基本的な SwishSearch::setSort の例
Example#4565 - 基本的な SwishSearch::setStructure の例
Example#4566 - .htaccessによりあるディレクトリのPHPによるパー スを無効にする
Example#4567 - apache_get_modules の例
Example#4568 - apache_get_version の例
Example#4569 - apache_getenv の例
Example#4570 - apache_lookup_uri の例
Example#4571 - PHP と Perl との間での情報のやりとり
Example#4572 - access.log への出力
Example#4573 - apache_request_headers の例
Example#4574 - apache_response_headers の例
Example#4575 - apache_setenv を使った Apache 環境変数の設定
Example#4576 - getallheaders の例
Example#4577 - nsapi_request_headers の例
Example#4578 - $_SESSIONで変数を登録
Example#4579 - 変数を $_SESSION から削除する
Example#4580 - 単一のユーザーに関するヒット数を数える
Example#4581 - 情報の例
Example#4582 - session_cache_expire の例
Example#4583 - session_cache_limiter の例
Example#4584 - $_SESSIONでセッションを破棄する
Example#4585 - session_name の例
Example#4586 - A session_regenerate_id の使用例
Example#4587 - 自作のセッションハンドラ: 完全なコードは SessionHandlerInterface を参照
Example#4588 - セッション保存ハンドラでオブジェクトを使う例
Example#4589 - セッションの例 page1.php
Example#4590 - セッションの例: page2.php
Example#4591 - SessionHandler を使って PHP の保存ハンドラに暗号化機能を追加する例
Example#4592 - SessionHandlerInterface の使用例
Example#4593 - bbcode_add_smiley の使用例
Example#4594 - bbcode_create の例
Example#4595 - bbcode_set_arg_parser の使用例
Example#4596 - bbcode_set_flags の使用例
Example#4597 - 有効なパターンの例
Example#4598 - 無効なパターンの例
Example#4599 - preg_filter と preg_replace の比較
Example#4600 - preg_grep の例
Example#4601 - preg_last_error の例
Example#4602 - テキストからすべての電話番号を得る
Example#4603 - HTML タグにマッチするものを見付ける(貪欲)
Example#4604 - 名前つきサブパターンの使用法
Example#4605 - 文字列 "php" を探す
Example#4606 - 単語 "web" を探す
Example#4607 - URL からドメイン名を得る
Example#4608 - 名前つきサブパターンの使用法
Example#4609 - preg_quote の例
Example#4610 - テキスト内の単語の斜体変換
Example#4611 - preg_replace_callback と create_function
Example#4612 - preg_replace_callback の例
Example#4613 - カプセル化された BB code を処理するための、 preg_replace_callback での再帰構造の使用
Example#4614 - 数字リテラルが後に続く後方参照
Example#4615 - 添字配列の使用
Example#4616 - 複数値の置換
Example#4617 - 空白の削除
Example#4618 - count 引数の使用
Example#4619 - preg_split の例 : 検索文字列のある部分を取得
Example#4620 - 文字列を文字要素に分割
Example#4621 - 文字列をマッチするものとそのオフセットに分割
Example#4622 - 正規表現の例
Example#4623 - ereg_replace の例
Example#4624 - ereg_replace の例
Example#4625 - URL をリンクで置換する
Example#4626 - ereg の例
Example#4627 - 検索結果の強調表示
Example#4628 - eregi の例
Example#4629 - split の例
Example#4630 - split の例
Example#4631 - spliti の例
Example#4632 - sql_regcase の例
Example#4633 - addcslashes の例
Example#4634 - addslashes の例
Example#4635 - chr の例
Example#4636 - chunk_split の例
Example#4637 - convert_uudecode の例
Example#4638 - convert_uuencode の例
Example#4639 - count_chars の例
Example#4640 - crc32 チェックサムの表示
Example#4641 - crypt の例
Example#4642 - crypt を htpasswd で使用する例
Example#4643 - 異なるハッシュ形式を用いた crypt の例
Example#4644 - echo の例
Example#4645 - explode の例
Example#4646 - explode の返り値の例
Example#4647 - limit パラメータの例
Example#4648 - fprintf: 数値のゼロ埋め
Example#4649 - fprintf: 金額のフォーマット
Example#4650 - 変換テーブルの例
Example#4651 - hex2bin の例
Example#4652 - HTML エンティティのデコード
Example#4653 - htmlentities の例
Example#4654 - ENT_IGNORE の使用例
Example#4655 - htmlspecialchars_decode の例
Example#4656 - htmlspecialchars の例
Example#4657 - implode の例
Example#4658 - lcfirst の例
Example#4659 - levenshtein の例
Example#4660 - localeconv の例
Example#4661 - ltrim の使用例
Example#4662 - md5_file の使用例
Example#4663 - md5 の例
Example#4664 - metaphone の基本的な例
Example#4665 - phonemes パラメータの使用例
Example#4666 - money_format の例
Example#4667 - nl2br の使用法
Example#4668 - is_xhtml パラメータの使用による、妥当な HTML 形式のマークアップの生成
Example#4669 - さまざまな改行文字
Example#4670 - number_format の例
Example#4671 - ord の例
Example#4672 - parse_str の使用法
Example#4673 - print の例
Example#4674 - rtrim の使用例
Example#4675 - setlocale の例
Example#4676 - Windows での setlocale の例
Example#4677 - sha1_file の例
Example#4678 - sha1 の例
Example#4679 - Soundex の例
Example#4680 - 引数の交換
Example#4681 - 引数の交換
Example#4682 - 引数の交換
Example#4683 - 引数の交換
Example#4684 - 位置指定子と他の指定との共用
Example#4685 - printf のさまざまな例
Example#4686 - printf の文字列指定子
Example#4687 - sprintf: 整数のゼロ埋め
Example#4688 - sprintf: 通貨をフォーマットする例
Example#4689 - sprintf: 科学記法
Example#4690 - sscanf の例
Example#4691 - sscanf - オプションパラメータの使用法
Example#4692 - str_ireplace の例
Example#4693 - str_pad の例
Example#4694 - str_repeat の例
Example#4695 - 基本的な str_replace の例
Example#4696 - str_replace に関するちょっとした事実
Example#4697 - str_rot13 の例
Example#4698 - str_shuffle の例
Example#4699 - str_split の使用例
Example#4700 - str_word_count の例
Example#4701 - strcasecmp の例
Example#4702 - strcspn の例
Example#4703 - strip_tags の例
Example#4704 - stripos の例
Example#4705 - stripslashes の例
Example#4706 - 配列に対する stripslashes の使用
Example#4707 - stristr の例
Example#4708 - 文字列が見つかるかどうかをテストする
Example#4709 - 文字列以外の needle の指定
Example#4710 - strlen の例
Example#4711 - strpbrk の例
Example#4712 - === の使用
Example#4713 - !== の使用
Example#4714 - オフセットの使用
Example#4715 - strrchr の例
Example#4716 - strrev で文字列を逆順にする
Example#4717 - 単純な strripos の例
Example#4718 - needle が haystack の中にあるかどうかの確認
Example#4719 - オフセットつきの検索
Example#4720 - strspn の例
Example#4721 - strstr の例
Example#4722 - strtok の例
Example#4723 - 古い strtok の動作
Example#4724 - 新しい strtok の動作
Example#4725 - strtolower の例
Example#4726 - strtoupper の例
Example#4727 - strtr の例
Example#4728 - 2 つの引数を伴う strtr の例
Example#4729 - strtr の挙動の比較
Example#4730 - substr_compare の例
Example#4731 - substr_count の例
Example#4732 - シンプルな substr_replace の例
Example#4733 - substr_replace で複数の文字列を一度に置換する例
Example#4734 - 負の start の使用
Example#4735 - 負の length の使用
Example#4736 - 基本的な substr の使用法
Example#4737 - substr でのキャストの挙動
Example#4738 -
Example#4739 - trimの使用例
Example#4740 - trim を用いて配列の値をトリミングする
Example#4741 - ucfirst の例
Example#4742 - ucwords の例
Example#4743 - vfprintf: 数値のゼロ埋め
Example#4744 - vprintf: 整数のゼロ埋め
Example#4745 - vsprintf: 整数のゼロ埋め
Example#4746 - wordwrap の例
Example#4747 - wordwrap の例
Example#4748 - array_change_key_case の例
Example#4749 - array_chunk の例
Example#4750 - array_combineの簡単な例
Example#4751 - array_count_values の例
Example#4752 - array_diff_assoc の例
Example#4753 - array_diff_assoc の例
Example#4754 - array_diff_key の例
Example#4755 - array_diff_uassoc の例
Example#4756 - array_diff_ukey の例
Example#4757 - array_diff の例
Example#4758 - array_fill_keys の例
Example#4759 - array_fill の例
Example#4760 - array_filter の例
Example#4761 - callback がない array_filter
Example#4762 - array_flip の例
Example#4763 - array_flip の例 : 衝突
Example#4764 - array_intersect_assoc の例
Example#4765 - array_intersect_key の例
Example#4766 - array_intersect_uassoc の例
Example#4767 - array_intersect_ukey の例
Example#4768 - array_intersect の例
Example#4769 - array_key_exists の例
Example#4770 - array_key_exists 対 isset
Example#4771 - array_keys の例
Example#4772 - array_map の例
Example#4773 - array_map でラムダ関数を使用する例 (PHP 5.3.0 以降)
Example#4774 - array_map - もっと配列を使ってみる例
Example#4775 - 配列の配列を生成する
Example#4776 - array_map - 文字列キーの例
Example#4777 - array_merge_recursive の例
Example#4778 - array_merge PHP 5 の例
Example#4779 - array_merge の例
Example#4780 - 簡単な array_merge の例
Example#4781 - 複数の配列をソートする
Example#4782 - 多次元の配列をソートする
Example#4783 - データベースの結果をソートする
Example#4784 - 大文字・小文字を区別しないソート
Example#4785 - array_pad の例
Example#4786 - array_pop の例
Example#4787 - array_product の例
Example#4788 - array_push の例
Example#4789 - array_rand の例
Example#4790 - array_reduce の例
Example#4791 - array_replace_recursive の例
Example#4792 - array_replace_recursive での再帰的な挙動の例
Example#4793 - array_replace の例
Example#4794 - array_reverse の例
Example#4795 - array_search の例
Example#4796 - array_shift の例
Example#4797 - array_slice の例
Example#4798 - array_splice の例
Example#4799 - array_splice の例
Example#4800 - array_sum の例
Example#4801 - array_udiff_assoc の例
Example#4802 - array_udiff_uassoc の例
Example#4803 - array_udiff で stdClass オブジェクトを使う例
Example#4804 - array_udiff で DateTime オブジェクトを使う例
Example#4805 - array_uintersect_assoc の例
Example#4806 - array_uintersect_uassoc の例
Example#4807 - array_uintersect の例
Example#4808 - array_unique の例
Example#4809 - array_unique と型
Example#4810 - array_unshift の例
Example#4811 - array_values の例
Example#4812 - array_walk_recursive の例
Example#4813 - array_walk の例
Example#4814 - array の例
Example#4815 - array における自動インデックス
Example#4816 - array で 1 から始まる配列を作成
Example#4817 - ダブルクオートで囲まれた配列にアクセスする
Example#4818 - arsort の例
Example#4819 - asort の例
Example#4820 - compact の例
Example#4821 - count の例
Example#4822 - 再帰的な count の例
Example#4823 - current と類似関数の使用例
Example#4824 - each の例
Example#4825 - each によって配列を走査する
Example#4826 - end の例
Example#4827 - extract の例
Example#4828 - in_array の例
Example#4829 - strict を指定した in_array の例
Example#4830 - needleが配列の場合の in_array
Example#4831 - key の例
Example#4832 - krsort の例
Example#4833 - ksort の例
Example#4834 - list の例
Example#4835 - list の使用法の例
Example#4836 - ネストした list の使用法
Example#4837 - 配列の添字を使用した list の例
Example#4838 - natcasesort の例
Example#4839 - natsort の基本的な使用例
Example#4840 - natsort をより知るための例
Example#4841 - next および類似関数の使用例
Example#4842 - prev および類似関数の使用例
Example#4843 - range の例
Example#4844 - reset の例
Example#4845 - rsort の例
Example#4846 - shuffle の例
Example#4847 - sort の例
Example#4848 - sort で、大文字小文字を区別せずに自然順での並べ替えを行う例
Example#4849 - 基本的な uasort の例
Example#4850 - uksort の例
Example#4851 - usort の例
Example#4852 - 多次元配列を使用する usort の例
Example#4853 - usort でオブジェクトのメンバ関数を使用する例
Example#4854 - usort で クロージャ を使って多次元配列をソートする例
Example#4855 - classes.inc
Example#4856 - test_script.php
Example#4857 - call_user_method_array の代替策
Example#4858 - call_user_method の代替策
Example#4859 - class_alias の例
Example#4860 - class_exists の例
Example#4861 - autoload パラメータの例
Example#4862 - get_called_class の使用法
Example#4863 - get_class_methods の例
Example#4864 - get_class_vars の例
Example#4865 - get_class_vars でのスコープの挙動
Example#4866 - get_class の使用例
Example#4867 - get_class のスーパークラスでの使用例
Example#4868 - get_declared_classes の例
Example#4869 - get_declared_interfaces の例
Example#4870 - get_object_vars の使用例
Example#4871 - get_parent_class の使用例
Example#4872 - interface_exists の例
Example#4873 - is_a の例
Example#4874 - PHP 5 での instanceof 演算子の使用
Example#4875 - is_subclass_of の例
Example#4876 - is_subclass_of でインターフェイスを使う例
Example#4877 - method_exists の例
Example#4878 - 静的な method_exists の例
Example#4879 - property_exists の例
Example#4880 - classkit_import の例
Example#4881 - classkit_method_add の例
Example#4882 - classkit_method_copy の例
Example#4883 - classkit_method_redefine の例
Example#4884 - classkit_method_remove の例
Example#4885 - classkit_method_rename の例
Example#4886 - A ctype_alnum の例 (デフォルトのロケールを使用)
Example#4887 - ctype_alphaの例 (デフォルトのロケールを使用)
Example#4888 - ctype_cntrl の例
Example#4889 - ctype_digit の例
Example#4890 - ctype_digit で文字列と整数値を比較する例
Example#4891 - ctype_graph の例
Example#4892 - ctype_lower の例(デフォルトのロケールを利用)
Example#4893 - ctype_print の例
Example#4894 - ctype_punct の例
Example#4895 - ctype_space の例
Example#4896 - ctype_upper の例(デフォルトのロケールを利用)
Example#4897 - ctype_xdigit の例
Example#4898 - デフォルトフィルタを htmlspecialchars と同様の挙動にする設定
Example#4899 - デフォルトのフィルタを htmlspecialchars と同様の挙動にする設定
Example#4900 - filter_var でのメールアドレスの検証
Example#4901 - filter_var での IP アドレスの検証
Example#4902 - filter_var でのオプションの指定
Example#4903 - メールアドレスの検証、および不正な部分の除去
Example#4904 - デフォルトのフィルタの設定
Example#4905 - filter_input_array の例
Example#4906 - filter_input の例
Example#4907 - filter_list の例
Example#4908 - filter_var_array の例
Example#4909 - filter_var の例
Example#4910 - call_user_func_array の例
Example#4911 - call_user_func_array での名前空間の使用法
Example#4912 - ラムダ関数の使用
Example#4913 - call_user_func の例と参照
Example#4914 - call_user_func の例
Example#4915 - 名前空間を使用した call_user_func
Example#4916 - call_user_func でのクラスメソッドの使用
Example#4917 - call_user_func でのラムダ関数の使用
Example#4918 - create_function による匿名関数の作成
Example#4919 - create_function による一般的な処理関数の作成
Example#4920 - コールバック関数としての匿名関数の使用法
Example#4921 - forward_static_call_array の例
Example#4922 - forward_static_call の例
Example#4923 - func_get_arg の例
Example#4924 - func_get_arg の PHP 5.3 前後の例
Example#4925 - func_get_arg での引数の参照渡しと値渡しの例
Example#4926 - func_get_args の例
Example#4927 - func_get_args の PHP 5.3 前後の例
Example#4928 - func_get_args での引数の参照渡しと値渡しの例
Example#4929 - func_num_args の例
Example#4930 - func_num_args の PHP 5.3 前後の例
Example#4931 - function_exists の例
Example#4932 - get_defined_functions の例
Example#4933 - register_shutdown_function の例
Example#4934 - register_tick_function の例
Example#4935 - クラスの関連付け
Example#4936 - オブジェクトの関連
Example#4937 - storage_classes.inc
Example#4938 - test_aggregation.php
Example#4939 - aggregate_info の使用例
Example#4940 - Quickhash の例
Example#4941 - Quickhash での ArrayAccess の例
Example#4942 - Quickhash での Iterator の例
Example#4943 - Quickhash での文字列の例
Example#4944 - QuickHashIntSet::add の例
Example#4945 - QuickHashIntSet::__construct の例
Example#4946 - QuickHashIntSet::delete の例
Example#4947 - QuickHashIntSet::exists の例
Example#4948 - QuickHashIntSet::getSize の例
Example#4949 - QuickHashIntSet::loadFromFile の例
Example#4950 - QuickHashIntSet::loadFromString の例
Example#4951 - QuickHashIntSet::saveToFile の例
Example#4952 - QuickHashIntSet::saveToString の例
Example#4953 - QuickHashIntHash::add の例
Example#4954 - QuickHashIntHash::__construct の例
Example#4955 - QuickHashIntHash::delete の例
Example#4956 - QuickHashIntHash::exists の例
Example#4957 - QuickHashIntHash::get の例
Example#4958 - QuickHashIntHash::getSize の例
Example#4959 - QuickHash IntHash ファイルフォーマット
Example#4960 - QuickHash IntHash ファイルフォーマット
Example#4961 - QuickHashIntHash::loadFromFile の例
Example#4962 - QuickHashIntHash::loadFromString の例
Example#4963 - QuickHashIntHash::saveToFile の例
Example#4964 - QuickHashIntHash::saveToString の例
Example#4965 - QuickHashIntHash::set の例
Example#4966 - QuickHashIntHash::update の例
Example#4967 - QuickHashStringIntHash::add の例
Example#4968 - QuickHashStringIntHash::__construct の例
Example#4969 - QuickHashStringIntHash::delete の例
Example#4970 - QuickHashStringIntHash::get の例
Example#4971 - QuickHashStringIntHash::getSize の例
Example#4972 - QuickHash StringIntHash ファイルフォーマット
Example#4973 - QuickHash IntHash ファイルフォーマット
Example#4974 - QuickHashStringIntHash::loadFromFile の例
Example#4975 - QuickHashStringIntHash::loadFromString の例
Example#4976 - QuickHashStringIntHash::saveToFile の例
Example#4977 - QuickHashStringIntHash::saveToString の例
Example#4978 - QuickHashStringIntHash::set の例
Example#4979 - QuickHashStringIntHash::update の例
Example#4980 - QuickHashIntStringHash::add の例
Example#4981 - QuickHashIntStringHash::__construct の例
Example#4982 - QuickHashIntStringHash::delete の例
Example#4983 - QuickHashIntStringHash::get の例
Example#4984 - QuickHashIntStringHash::getSize の例
Example#4985 - QuickHash IntString ファイルフォーマット
Example#4986 - QuickHash IntString ファイルフォーマット
Example#4987 - QuickHashIntStringHash::loadFromFile の例
Example#4988 - QuickHashIntStringHash::loadFromString の例
Example#4989 - QuickHashIntStringHash::saveToFile の例
Example#4990 - QuickHashIntStringHash::saveToString の例
Example#4991 - QuickHashIntStringHash::set の例
Example#4992 - QuickHashIntStringHash::update の例
Example#4993 - シェル (ターミナル) からのリフレクションの例
Example#4994 - 組み込みクラスを拡張する
Example#4995 - ReflectionClass の基本的な使用例
Example#4996 - ReflectionClass::export の基本的な使用例
Example#4997 - ReflectionClass::getConstructor の基本的な使用例
Example#4998 - ReflectionClass::getDefaultProperties の例
Example#4999 - ReflectionClass::getDocComment の例
Example#5000 - ReflectionClass::getEndLine の例
Example#5001 - ReflectionClass::getExtension の基本的な使用例
Example#5002 - ReflectionClass::getExtensionName の基本的な使用例
Example#5003 - ReflectionClass::getInterfaceNames の例
Example#5004 - ReflectionClass::getInterfaces の例
Example#5005 - ReflectionClass::getMethod の基本的な使用例
Example#5006 - ReflectionClass::getMethods の基本的な使用例
Example#5007 - ReflectionClass::getMethods のフィルタリング
Example#5008 - ReflectionClass::getName の例
Example#5009 - ReflectionClass::getNamespaceName の例
Example#5010 - ReflectionClass::getProperties でのフィルタリングの例
Example#5011 - ReflectionClass::getProperty の基本的な使用例
Example#5012 - ReflectionClass::getShortName の例
Example#5013 - ReflectionClass::getStaticPropertyValue の基本的な使用例
Example#5014 - ReflectionClass::hasConstant の例
Example#5015 - ReflectionClass::hasMethod の例
Example#5016 - ReflectionClass::hasProperty の例
Example#5017 - ReflectionClass::inNamespace の例
Example#5018 - ReflectionClass::isAbstract の例
Example#5019 - ReflectionClass::isCloneable の基本的な使用例
Example#5020 - ReflectionClass::isAbstract の例
Example#5021 - ReflectionClass::isInstance の例
Example#5022 - ReflectionClass::isInstantiable の例
Example#5023 - ReflectionClass::isInterface の基本的な使用例
Example#5024 - ReflectionClass::isInternal の基本的な使用例
Example#5025 - ReflectionClass::isIterateable の例
Example#5026 - ReflectionClass::newInstanceArgs の基本的な使用例
Example#5027 - ReflectionClass::__toString の例
Example#5028 - ReflectionExtension の例
Example#5029 - ReflectionExtension::getClasses の例
Example#5030 - ReflectionExtension::getClassNames の例
Example#5031 - ReflectionExtension::getConstants の例
Example#5032 - ReflectionExtension::getDependencies の例
Example#5033 - ReflectionExtension::getFunctions の例
Example#5034 - ReflectionExtension::getINIEntries の例
Example#5035 - ReflectionExtension::getName の例
Example#5036 - ReflectionExtension::getVersion の例
Example#5037 - ReflectionExtension::info の例
Example#5038 - ReflectionFunction::__construct の例
Example#5039 - ReflectionFunction::invoke の例
Example#5040 - ReflectionFunction::invokeArgs の例
Example#5041 - ReflectionFunction::invokeArgs で参照を使う例
Example#5042 - ReflectionFunction::__toString の例
Example#5043 - ReflectionFunctionAbstract::isDeprecated の例
Example#5044 - ReflectionMethod::__construct の例
Example#5045 - ReflectionMethod::getDeclaringClass の例
Example#5046 - ReflectionMethod::getModifiers の例
Example#5047 - ReflectionMethod::getPrototype の例
Example#5048 - ReflectionMethod::invoke の例
Example#5049 - ReflectionMethod::invokeArgs の例
Example#5050 - ReflectionMethod::__toString の例
Example#5051 - ReflectionParameter クラスの使用
Example#5052 - 取得例
Example#5053 - ReflectionProperty::__construct の例
Example#5054 - ReflectionProperty クラスを用いた、private および protected プロパティの値の取得
Example#5055 - ReflectionProperty::getValue の例
Example#5056 - ReflectionProperty::setValue の例
Example#5057 - boolval の例
Example#5058 - debug_zval_dump の例
Example#5059 -
Example#5060 -
Example#5061 - 簡単な empty / isset の比較
Example#5062 - 文字列のオフセットに対する empty
Example#5063 - floatval の例
Example#5064 - get_defined_vars の例
Example#5065 - get_resource_type の例
Example#5066 - gettype の例
Example#5067 - import_request_variables の例
Example#5068 - intval の例
Example#5069 - 変数が配列かどうか検査する
Example#5070 - is_bool の例
Example#5071 - is_callable の例
Example#5072 - is_float の例
Example#5073 - is_int の例
Example#5074 - is_null の例
Example#5075 - is_numeric の例
Example#5076 - is_object の例
Example#5077 - is_resource の例
Example#5078 - is_scalar の例
Example#5079 - is_string の例
Example#5080 - isset の例
Example#5081 - 文字列のオフセットに対する isset
Example#5082 - print_r の例
Example#5083 - return 引数の例
Example#5084 - serialize の例
Example#5085 - settype の例
Example#5086 - PHP 5 のマジックメソッド __toString() を使う strval の例
Example#5087 - unserialize の例
Example#5088 - unserialize_callback_func の例
Example#5089 - unset の例
Example#5090 - (unset) によるキャスト
Example#5091 - var_dump の例
Example#5092 - var_export の例
Example#5093 - PHP 5.1.0 以降でのクラスのエクスポート
Example#5094 - __set_state() の使用法 (PHP 5.1.0 以降)
Example#5095 -
Example#5096 - OAuth::fetch の例
Example#5097 - OAuth::getAccessToken の例
Example#5098 - OAuth::getRequestToken の例
Example#5099 - OAuth::setRequestEngine example
Example#5100 - OAuth::setRsaCertificate の例
Example#5101 - OAuth::setToken の例
Example#5102 - OAuthProvider::__construct の例
Example#5103 - OAuthProvider::consumerHandler コールバックの例
Example#5104 - OAuthProvider::generateToken の例
Example#5105 - OAuthProvider::is2LeggedEndpoint の例
Example#5106 - OAuthProvider::timestampNonceHandler コールバックの例
Example#5107 - OAuthProvider::tokenHandler コールバックの例
Example#5108 - SCA コンポーネントのサンプル
Example#5109 - SCA for PHP のコンポーネントの構造
Example#5110 - ローカルの PHP クラスへのプロキシの取得
Example#5111 - ウェブサービスへのプロキシの取得
Example#5112 - サービスのコール
Example#5113 - getService を使用したプロキシの取得
Example#5114 - プロキシ上でのコール
Example#5115 - StockQuote サービス
Example#5116 - 作成された WSDL
Example#5117 - 作成された WSDL
Example#5118 - location 属性
Example#5119 - ふたつの引数を持つメソッド
Example#5120 - パラメータ名を表す types セクション
Example#5121 - データ構造を使用するコンポーネント
Example#5122 - SCA::getService の例
Example#5123 - is_soap_fault の例
Example#5124 - SOAP の標準的なエラーレポートメソッドは例外となる
Example#5125 - SoapClient::__doRequest の例
Example#5126 - SoapClient::__getFunctions の例
Example#5127 - SoapClient::__getLastRequest() の例
Example#5128 - SoapClient::__getLastRequest() の例
Example#5129 - SoapClient::__getLastResponse() の例
Example#5130 - SoapClient::__getLastResponse() の例
Example#5131 - SoapClient::__getTypes の例
Example#5132 - SoapClient::__setLocation の例
Example#5133 - SoapClient::__setSoapHeaders の例
Example#5134 - 複数のヘッダの設定
Example#5135 - SoapClient::__soapCall の例
Example#5136 - SoapClient::SoapClient の例
Example#5137 - SoapServer::addFunction の例
Example#5138 - SoapServer::getFunctions の例
Example#5139 - SoapServer::handle の例
Example#5140 - SoapServer::setPersistence の例
Example#5141 - SoapServer::SoapServer の例
Example#5142 - いくつかの例
Example#5143 - いくつかの例
Example#5144 - SoapHeader::SoapHeader の例
Example#5145 - SoapParam::SoapParam の例
Example#5146 - SoapVar::SoapVar の例
Example#5147 - XMLRPC クライアント関数の例
Example#5148 - XML-RPC の型の例
Example#5149 - xmlrpc_set_type の例
Example#5150 - ASP における For Each
Example#5151 - PHP 4 における while() ... Next()
Example#5152 - PHP 5 における foreach
Example#5153 - COM の例 (1)
Example#5154 - COM の例 (2)
Example#5155 - DOTNET の例
Example#5156 - PHP 4.x 形式 での Variant の例
Example#5157 - PHP 5 形式での Variant の例
Example#5158 - COM イベントシンクの例
Example#5159 - オブジェクト指向の構文
Example#5160 - com_invoke() を使用せず、かわりにオブジェクト指向の構文を使用する
Example#5161 - オブジェクト指向の構文
Example#5162 - オブジェクト指向の構文
Example#5163 - printer_abort の例
Example#5164 - printer_close の例
Example#5165 - printer_create_dc の例
Example#5166 - printer_draw_bmp の例
Example#5167 - printer_draw_chord の例
Example#5168 - printer_draw_elipse の例
Example#5169 - printer_draw_line の例
Example#5170 - printer_draw_pie の例
Example#5171 - printer_draw_rectangle の例
Example#5172 - printer_draw_roundrect の例
Example#5173 - printer_draw_text の例
Example#5174 - printer_get_option の例
Example#5175 - printer_list の例
Example#5176 - printer_logical_fontheight の例
Example#5177 - printer_open の例
Example#5178 - printer_select_brush の例
Example#5179 - printer_select_font の例
Example#5180 - printer_select_pen の例
Example#5181 - printer_set_option の例
Example#5182 - printer_start_doc の例
Example#5183 - printer_write の例
Example#5184 - uptime を取得し、メッセージボックスに表示する
Example#5185 - 現在の PHP プロセスについての統計情報
Example#5186 - グローバルメモリの使用状況
Example#5187 - PHP スクリプトをサービスとして登録する
Example#5188 - サービスの登録を解除する
Example#5189 - サービスとして実行する
Example#5190 - win32_create_service の例
Example#5191 - win32_delete_service の例
Example#5192 - win32_start_service_ctrl_dispatcher の例
Example#5193 - 新しい DOMAttr オブジェクトを作成する
Example#5194 - DOMAttr::isId() の例
Example#5195 - 新しい DOMCdataSection オブジェクトの作成
Example#5196 - 新しい DOMComment を作成する
Example#5197 - 新しい DOMDocument を作成する
Example#5198 - 新しい要素を作成し、ルートとして挿入する
Example#5199 - 新しい要素を作成し、ルートとして挿入する
Example#5200 - 名前空間プレフィックスの例
Example#5201 - DOMDocument::getElementById() の例
Example#5202 - 基本的な使用例
Example#5203 - すべての XInclude 要素を取得する
Example#5204 - DOMDocument::importNode の例
Example#5205 - ドキュメントの作成
Example#5206 - ドキュメントを作成する
Example#5207 - ドキュメントを作成する
Example#5208 - ドキュメントを作成する
Example#5209 - loadXML の静的な起動
Example#5210 - 新しいメソッドを DOMElement に追加し、コードを書きやすくする
Example#5211 - カスタムクラス形式での要素の取得
Example#5212 - オーナードキュメントの取得
Example#5213 - DOM ツリーをファイルに保存する
Example#5214 - HTML ツリーを文字列に保存する
Example#5215 - HTML ツリーをファイルに保存する
Example#5216 - DOM ツリーを文字列に保存する
Example#5217 - DTD による検証の例
Example#5218 - DOMDocument::xinclude() の例
Example#5219 - XML データのドキュメントへの追加
Example#5220 - 新しい DOMElement を作成する
Example#5221 - 属性を設定する
Example#5222 - 新しい DOMEntityReference を作成する
Example#5223 - DTD を添付してドキュメントを作成する
Example#5224 - DOM Implementation を調べる
Example#5225 - 子要素の追加
Example#5226 - DOMNode::getLineNo メソッドの例
Example#5227 - DOMNode::getNodePath の例
Example#5228 - 子要素の削除
Example#5229 - 親ノードの名前空間 URI の保持
Example#5230 - テーブル内のすべての要素を取得する
Example#5231 - 新しい DOMProcessingInstruction を作成する
Example#5232 - 新しい DOMText を作成する
Example#5233 - 英語の書籍の数を取得する
Example#5234 - すべての英語の書籍を取得する
Example#5235 - book.xml
Example#5236 - DOMXPath::registerPHPFunctions と php:functionString の例
Example#5237 - DOMXPath::registerPHPFunctions と php:function の例
Example#5238 - dom_import_simplexml を用いて SimpleXML を DOM にインポートする
Example#5239 - libxml_get_errors の例
Example#5240 - libxml_set_external_entity_loader の例
Example#5241 - libxml_set_streams_context の例
Example#5242 - libxml_use_internal_errorsの例
Example#5243 - プロパティ名を使用したアクセス
Example#5244 - 配列のインデックスを使用したプロパティへのアクセス
Example#5245 - データオブジェクトの繰り返し処理
Example#5246 - 多くの値をとりうるプロパティへの名前によるアクセス
Example#5247 - 多くの値をとりうる要素へのアクセス
Example#5248 - 多くの値をとりうるプロパティの順次処理
Example#5249 - 連結されたプロパティへのアクセス
Example#5250 - XPath によるナビゲーション
Example#5251 - XPath による問い合わせ
Example#5252 - 子オブジェクトの作成
Example#5253 - プリミティブなプロパティの開放
Example#5254 - データオブジェクトの開放
Example#5255 - 参照されているデータオブジェクトの開放
Example#5256 - プロパティのインデックスを使用したアクセス
Example#5257 - SDO_Sequence インターフェイスの取得
Example#5258 - シーケンスの値の取得/設定
Example#5259 - シーケンスの繰り返し処理
Example#5260 - シーケンスとデータオブジェクトの比較
Example#5261 - シーケンスへの追加
Example#5262 - シーケンスからの削除
Example#5263 - データオブジェクトへのリフレクション
Example#5264 - 型情報へのアクセス
Example#5265 - SDO_DAS_DataFactory::addPropertyToType の例
Example#5266 - SDO_DAS_DataFactory::addType の例
Example#5267 - データオブジェクトの作成
Example#5268 - データオブジェクトの取得
Example#5269 - データオブジェクトの更新
Example#5270 - データオブジェクトの削除
Example#5271 - 会社がひとつ、部署がひとつの例 - 作成
Example#5272 - 会社がひとつ、部署がひとつの例 - 取得および更新
Example#5273 - 会社がひとつ、部署がふたつの例 - 取得および削除
Example#5274 - 会社がひとつ、部署がひとつ、従業員が一人の例 - 作成
Example#5275 - 会社がひとつ、部署がひとつ、従業員が一人の例 - 取得および更新
Example#5276 - 会社がひとつ、部署がふたつ、従業員が二人の例 - 取得および削除
Example#5277 - executePreparedQuery によるデータオブジェクトの取得
Example#5278 - XML ドキュメントの読み込み・変更そして保存
Example#5279 - 新しい XML ドキュメントの作成
Example#5280 - XML ドキュメントのプロパティの設定
Example#5281 - オープン型の使用
Example#5282 - ドキュメントから何が得られるのかを知る
Example#5283 - SDO モデルの表示
Example#5284 - XML文字列を設定するインクルードファイル example.php
Example#5285 - <plot> を取得する
Example#5286 - <line> を取得する
Example#5287 - SimpleXMLでユニークでない要素にアクセスする
Example#5288 - 属性を使用する
Example#5289 - 要素および属性をテキストと比較する
Example#5290 - ふたつの要素の比較
Example#5291 - XPath の使用
Example#5292 - 値を設定する
Example#5293 - 要素と属性を追加する
Example#5294 - DOMとの相互運用性
Example#5295 - 壊れた XML 文字列の読み込み
Example#5296 - SimpleXML 要素への属性と子要素の追加
Example#5297 - SimpleXML 要素への属性と子要素の追加
Example#5298 - XML を取得する
Example#5299 - SimpleXMLElement::xpath の結果に asXML() を使用する
Example#5300 - XML文字列を解釈する
Example#5301 - children() 疑似配列を走査する
Example#5302 - 名前空間の使用
Example#5303 - SimpleXMLElement オブジェクトの作成
Example#5304 - URL からの SimpleXMLElement オブジェクトの作成
Example#5305 - 子要素の数の取得
Example#5306 - ドキュメントの名前空間の取得
Example#5307 - 複数の名前空間での動作
Example#5308 - XML 要素の名前の取得
Example#5309 - ドキュメントで使用している名前空間の取得
Example#5310 - XPath クエリで使用する名前空間プレフィックスの設定
Example#5311 - Xpath
Example#5312 - 現在の要素を返す
Example#5313 - 現在の要素の子要素を返す
Example#5314 - 現在の要素が子要素を持つかどうかを調べる
Example#5315 - 現在の XML タグキーの取得
Example#5316 - 次の要素への移動
Example#5317 - 最初の要素に巻き戻す
Example#5318 - 現在の要素が有効かどうかを調べる
Example#5319 - DOM のインポート
Example#5320 - XMLドキュメントをパースする
Example#5321 - XML 文字列をパースする
Example#5322 - WDDX を使用した単一の値のシリアル化
Example#5323 - WDDX を使用してパケットを追加する例
Example#5324 - wddx_serialize_vars の例
Example#5325 - XML エレメント構造を表示
Example#5326 - XMLをHTMLにマップする
Example#5327 - 外部エンティティの例
Example#5328 - xmltest.xml
Example#5329 - xmltest2.xml
Example#5330 - xml_parse_into_struct の例
Example#5331 - moldb.xml - 分子情報の小さなデータベース
Example#5332 - parsemoldb.php - moldb.xml を処理し、分子オブジェクトの配列に代入
Example#5333 - xml_set_object の例
Example#5334 - XML の妥当性の検証
Example#5335 - collection.xml
Example#5336 - collection.xsl
Example#5337 - XSLTProcessor の生成
Example#5338 - EXSLT サポートの判定
Example#5339 - スタイルシートからの単純な PHP 関数コール
Example#5340 - 変換前に所有者を変更する
Example#5341 - プロファイル出力の例
Example#5342 - DOMDocument への変換
Example#5343 - HTML ファイルへの変換
Example#5344 - 文字列への変換
Example#5345 - xslt_backend_name の例
Example#5346 - xslt_backend_version の例
Example#5347 - xslt_create の例
Example#5348 - 関数 xslt_error および xslt_errno によるエラー処理
Example#5349 - XML ファイルと XSL ファイルを新規 XML ファイルに変換するために xslt_process を使用する
Example#5350 - XML ファイルと XSL ファイルを結果XMLデータを含む変数に変換するために xslt_process を使用する
Example#5351 - XML データを含む変数と XSLT データを含む変数を XML データ出力結果を 含む変数に変換するためにxslt_processを使用 する
Example#5352 - PHP 変数を XSL ファイルに渡す
Example#5353 - xslt_set_error_handler の例
Example#5354 - XSLT のロギング機能の使用法
Example#5355 - 独自のエラーハンドラとしてメソッドを使用する
Example#5356 - xslt_set_sax_handlers の例
Example#5357 - オブジェクト指向ハンドラ
Example#5358 - xslt_set_scheme_handlers の例
Example#5359 - xslt_setopt の例
Example#5360 - "counter" の基本インターフェイス
Example#5361 - "counter" の拡張インターフェイス
Example#5362 - "counter" のオブジェクト指向インターフェイス
Example#5363 - config.m4 ファイルの例
Example#5364 - configure の出力例
Example#5365 - counter の config.m4 ファイル
Example#5366 - config.w32 ファイルのサンプル
Example#5367 - counter の config.w32 ファイル
Example#5368 - counter 拡張モジュールのファイル一覧 (順不同)
Example#5369 - counter 拡張モジュールにおける zend_module の宣言部
Example#5370 - PHP 5.3 における zend_module の定義
Example#5371 - Counter 拡張モジュールの定義
Example#5372 - カウンタの基本インターフェイスで値を保存するときの間違った方法
Example#5373 - counter モジュールのグローバル変数
Example#5374 - counter モジュールのグローバル構造体宣言
Example#5375 - モジュール単位のグローバルにアクセスするためのマクロ
Example#5376 - 正しい方法での基本カウンタインターフェイスの値の保存
Example#5377 - counter の PHP_MINFO 関数
Example#5378 - PHP のメモリリーク警告
Example#5379 - 関数をひとつ持つ最小限の PHP 拡張モジュール
Example#5380 - 単純な関数
Example#5381 - pdo_SKEL_error をコールするマクロの例
Example#5382 - pdo_parse_params の使用
Example#5383 - プリペアドステートメントをネイティブにサポートしていないドライバでの実装
Example#5384 - PHPホームページを表示するための簡単なストリームの例
Example#5385 - ストリームをパラメータとして受け取る方法
Example#5386 - 関数からストリームを返す方法
Example#5387 - デフォルトの config.m4
Example#5388 - 単純な拡張モジュール
Example#5389 - first_module.so をテストするためのファイル
Example#5390 - 内部での zend_function_entry の宣言
Example#5391 - 内部での zend_module_entry の宣言
Example#5392 - fsockopen() における、PHP の可変引数処理の実装
Example#5393 - PHP/Zend zval 型定義
Example#5394 - パラメータが参照で渡されたかどうかを調べる
Example#5395 - スコープが異なる変数の作成
Example#5396 - long の作成
Example#5397 - 連想配列への要素の追加
Example#5398 - 数値添字配列への要素の追加
Example#5399 - ソースコードおよび phpinfo の出力のスクリーンショット
Example#5400 - 実行時の情報の表示
Example#5401 - ユーザー関数のコール
Example#5402 - HTML の hidden 要素
Example#5403 - ユーザーによって編集するデータ
Example#5404 - URL 中の場合
Example#5405 - PHP による Javascript の生成
Example#5406 - Register Globals をエミュレートする
Example#5407 - PHP/FI のコード例
Example#5408 - PHP コア
Example#5409 - PHP コアにおける オブジェクト指向のコード
Example#5410 - bzip2 拡張モジュール
Example#5411 - datetime 拡張モジュール
Example#5412 - dBase 拡張モジュール
Example#5413 - mcrypt 拡張モジュール
Example#5414 - oci8 拡張モジュール
Example#5415 - SPL 拡張モジュール
Example#5416 - Semaphore (sysvmsg) 拡張モジュール
Example#5417 - 5.2.1 以降の Zip の例
Example#5418 - strrpos と strripos は、 needleとして文字列全体を使用する
Example#5419 - プロパティを持たないオブジェクトはもはや"空"とはみなされない
Example#5420 - クラスは使用前に宣言する必要がある
Example#5421 - PHP 4におけるオブジェクトの比較の例
Example#5422 - PHP4における複合的なオブジェクトの比較
Example#5423 - PHP 5のオブジェクト比較の例
Example#5424 - dev. ドメインではエラーを画面に表示させるようにする例
Example#5425 - 保護エリア内でのスクリプトのセキュリティ確保
Example#5426 - Unix include_path
Example#5427 - Windows include_path
Example#5428 - Unix include_path で環境変数 ${USER} を使う例
Example#5429 - string.rot13
Example#5430 - string.toupper
Example#5431 - string.tolower
Example#5432 - string.strip_tags
Example#5433 - convert.base64-encode と convert.base64-decode
Example#5434 - convert.quoted-printable-encode と convert.quoted-printable-decode
Example#5435 - zlib.deflate と zlib.inflate
Example#5436 - zlib.deflate のシンプルな例
Example#5437 - bzip2.compress と bzip2.decompress
Example#5438 - 3DES を用い、ファイルへの出力を暗号化する
Example#5439 - 暗号化されたファイルを読み込む
関数・メソッド
変更履歴
索引
PHP Manual