サクサク読めて、アプリ限定の機能も多数!
トップへ戻る
買ってよかったもの
framework.zend.com
ZF2016-03: Potential SQL injection in ORDER and GROUP functions of ZF1 The implementation of ORDER BY and GROUP BY in Zend_Db_Select remained prone to SQL injection when a combination of SQL expressions and comments were used. This security patch provides a comprehensive solution that identifies and removes comments prior to checking validity of the statement to ensure no SQLi vectors occur. The i
2016-06-28 | By: Matthew Weier O'Phinney After 17 months of effort, hundreds of releases, tens of thousands of commits by hundreds of contributors, and millions of installs, we're pleased to announce the immediate availability of Zend Framework 3. What is Zend Framework 3? For Zend Framework 2 MVC users, the differences are subtle: Increased performance; we've measured up to 4X faster applications
2015-01-21 | By: Matthew Weier O'Phinney Update: ZF3 Released! Zend Framework 3 was released 28 June 2016! Read the announcement for details! The most often-asked questions we get around the Zend Framework project include: Where is Zend Framework heading? When will Zend Framework 3 be released? What changes and enhancements should we expect? Since inception, our goal for Zend Framework has been to
Zend_Gdata_Calendar クラスを使うと、Google Calendar サービスで イベントの閲覧や作成、更新、削除ができるようになります。 Google Calendar API についての詳細な情報は » http://code.google.com/apis/calendar/overview.html を参照ください。 Google Calendar API は、その他の GData API と同様に Atom Publishing Protocol (APP) を使用しています。これは、XML ベースのフォーマットでウェブのリソースを管理するための仕組みです。 クライアントと Google Calendar サーバとの間のやり取りは HTTP で行われ、認証済みの接続と未認証の接続の両方が利用できます。 何らかのトランザクションが発生する際には、 必ず接続を確立す
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ 概要 - Zend_Log Zend_Log は、ログ出力用の汎用コンポーネントです。 複数のバックエンドに対応しており、ログに出力するメッセージをフォーマットしたり 記録するメッセージをフィルタリングしたりできます。 これらの関数は、以下のオブジェクトに分けられています。 ログ (Zend_Log のインスタンス) は、 アプリケーション内でもっともよく使用するオブジェクトです。 いくつでも望みの数だけのログオブジェクトを保持できます。 それ
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ Zend_Db_Adapter(日本語) - Zend_Db 注意:このドキュメントでは、英語版のリビジョン 21358 の更新内容をスキップしています。 Zend_Db とその関連クラス群は、Zend Framework において SQL データベースとのインターフェイスを担当します。 Zend_Db_Adapter は、PHP アプリケーションから RDBMS に接続する際に使用する基本クラスです。 RDBMS の種類に応じて、それぞれ個別
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ Zend_Controller - Zend Framework Reference
以下では、一覧に記載されたディレクトリ毎に利用例を記述します。 application/: このディレクトリは、アプリケーションを含みます。 構成や利用されるサービス、及びブートストラップ・ファイルと同様に、 MVCシステムを収納します。 configs/: アプリケーション全体の設定のディレクトリ controllers/, models/, views/: これらのディレクトリは、デフォルトのコントローラ、モデルまたは ビューのディレクトリとして用いられます。 アプリケーション・ディレクトリの中にこれらの3つのディレクトリを持たせると、 グローバルな controllers/models/views を持つ モジュラー・プロジェクトと同様に、 単純なプロジェクトを始めるための最良のレイアウトが提供されます。 controllers/helpers/: これらのディレクトリにはアクション
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ Zend_Http_Client - 高度な使用法 - Zend_Http デフォルトでは、Zend_Http_Client は自動的に五段階までの HTTP リダイレクトを処理します。これを変更するには、設定パラメータ 'maxredirects' を変更します。 HTTP/1.1 の RFC によると、HTTP 301 および 302 レスポンスを受け取ったクライアントは、 指定された場所に同じリクエストを再送する必要があります。 この際に
Zend_Db_Select オブジェクトは、SQL の SELECT 文を表すものです。 このクラスには、クエリの各部分を追加するためのメソッドが用意されています。 PHP のメソッドやデータをもとにクエリの各部分を指定すると、 このクラスが正確な SQL 文を作成してくれます。クエリを作成したら、 あとは通常の文字列と同じようにそれを用いてクエリを実行できます。 Zend_Db_Select は次のような機能を提供します。 SQL クエリを少しずつ組み立てていくための オブジェクト指向のメソッド SQL クエリの一部について、データベースに依存しない抽象化 大半のメタデータ識別子の自動クォート処理による、 予約語や特殊文字を含む SQL のサポート 識別子や値のクォートによる、 SQL インジェクション攻撃対策 必ず Zend_Db_Select を使わなければならないというわけではあ
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ モデルとデータベーステーブルの作成 - Zend Framework Quick Start 始める前にちょっと考えてみましょう。これらのクラスはどこにあって、それをどのように探すのでしょうか? わたしたちが作成したデフォルトのプロジェクトでは、一つのオートローダーがインスタンス化されます。 そこへ、他のクラスを探せるよう別のオートローダーを付け加えることができます。 MVC の様々なクラスはふつう一つのツリー -- ここでは applicat
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ クラスの読み込み - Zend Framework Performance Guide Zend Frameworkアプリケーションのプロファイルをとってみた人は誰でも、 Zend Frameworkではクラスの読み込みが比較的高くつくことにすぐ気がつくでしょう。 多くのコンポーネントのために読み込まれる必要があるクラスファイルの本当の数、 クラス名とファイルシステムとの間に1対1の関係が成立しないプラグインの利用、 include_once(
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ アクションコントローラ - Zend_Controller Zend_Controller_Action は、 モデル - ビュー - コントローラ (MVC) パターンにもとづいたウェブアプリケーションを作成する際に、 フロントコントローラで使用するアクションコントローラを実装するための抽象クラスです。 Zend_Controller_Action を使用するには、 実際のアクションコントローラクラス内でこのクラスのサブクラスを作成する必要が
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ ビューヘルパー - Zend_View ビュースクリプトの中で、複雑な関数を繰り返し実行しなければならないこともあるでしょう (例えば日付のフォーマット、フォーム要素の作成、リンクの作成など)。 このような作業を行うために、ヘルパークラスを使用できます。 ヘルパーの正体は、単なるクラスです。たとえば 'fooBar' という名前のヘルパーを使用するとしましょう。 デフォルトでは、クラス名の先頭には 'Zend_View_Helper_' がつき
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ PHP ファイルの書式 - Zend Framework PHP 標準コーディング規約
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ 命名規約 - Zend Framework PHP 標準コーディング規約 Zend Framework では、クラスの名前が保存先ディレクトリに直接対応するような 命名規約を採用しています。Zend Framework 標準ライブラリの最上位レベルのディレクトリは "Zend/" ディレクトリです。一方、Zend Framework 追加ライブラリの最上位レベルのディレクトリは "ZendX/" ディレクトリです。この配下に、すべてのクラスが階
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ Programmer's Reference Guide
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ Zend_Form クイックスタート - Zend_Form
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ Zend Framework PHP 標準コーディング規約 - Programmer's Reference Guide
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ Google Spreadsheets の使用法 - Zend_Gdata 注意:このドキュメントでは、英語版のリビジョン 22432 の更新内容をスキップしています。 Google Spreadsheets データ API を使用すると、 スプレッドシートの中身を Google データ API フィード形式で閲覧したり それを更新したりすることができるようになります。 あるユーザのスプレッドシートの一覧を取得したり、 既存のスプレッドシートの
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ Zend_Test_PHPUnit(日本語) - Zend_Test
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ Programmer’s Reference Guide of Zend Framework 2 — Zend Framework 2 2.0.7 documentation
The Zend Framework project ceased creation of distribution tarballs/zip files for releases starting with the 2.5.0 release, in favor of distribution via Composer. We will continue to create and provide them for the 2.4 LTS release, and those packages will be reflected here. As such, this page is an historical record, and primarily of use for developers using older versions of the framework. We hig
Caution: The documentation you are viewing is for an older version of Zend Framework. You can find the documentation of the current version at: https://docs.zendframework.com/ コーディングスタイル - Zend Framework PHP 標準コーディング規約
Oops! This is awkward. We encountered a 404 Not Found error. You are looking for something that doesn't exist or may have moved. Check out one of the links on this page or head back to Home.
Picasa Web Albums は、自分の写真のアルバムを管理したり 他人のアルバムや写真を閲覧したりするサービスです。 API を使用すると、このサービスをプログラムから操作できるようになります。 たとえばアルバムへの追加や更新、削除、 そして写真へのタグ付けやコメントを行うことができます。 公開されているアルバムや写真へのアクセスについては、 アカウントによる制限はありません。 しかし、読み込み専用以外のアクセスを行うにはログインする必要があります。 API についての詳細な情報、 たとえば API へのアクセスを有効にする方法などは » Picasa Web Albums Data API の概要 を参照ください。 注意: 認証 この API は、AuthSub (推奨) および ClientAuth による認証に対応しています。 書き込みを行うには認証済みの HTTP 接続が
このドキュメントは、Zend Framework に貢献してくださる開発者個人 (あるいはチーム) のためにコードの書式やドキュメント作成の指針を示すものです。 Zend Framework を用いて開発をする人たちにとってもこのコーディング規約は有用でしょう。 これに従えば、Zend Framework のコードとの一貫性が保てるからです。 そのためには、ここで完全なコーディング規約を示す必要があります。 注意: 注意: 詳細なレベルまでの設計指針を示すこと以上に、 それを標準規格として確立することが大切だと考えています。 Zend Framework コーディング規約の指針は、 これまで Zend Framework プロジェクトでうまく回っていた方針をまとめたものです。 この» ライセンスのもとで、 そのまま使用するなり多少変更して使用するなりすることができます。 Zend Fram
次のページ
このページを最初にブックマークしてみませんか?
『Zend Framework』の新着エントリーを見る
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く