タグ

FuelPHPとマニュアルに関するiwwのブックマーク (3)

  • Request - クラス - FuelPHP ドキュメント

    Request クラス Request クラスは、 URI リクエストを処理します。Fuel は index.php 内で、ユーザーからの URI リクエストを処理するために同クラスを使用しています。また、HMVC コンテキストの中でリクエストを生成するためには、このクラスを使う必要があります。 forge($uri = null, $route = true) forge メソッドは、新しい request オブジェクトを返します。 静的

  • Session 高度な使い方 - クラス - FuelPHP ドキュメント

    Session クラス The session class allows you to maintain state for your application in the stateless environment of the web. It allows you to store variables on the server using a variety of storage solutions, and recall these variables on the next page request. Manual loading For most cases, it is sufficient to configure the desired driver, and use the methods documented on the usage page. However, t

    iww
    iww 2016/04/07
    嘘だろクッキー使いたくないときは自分でなんとかしろってかこれ
  • Uri - クラス - FuelPHP ドキュメント

    Uri クラス Uri クラスは URI を対話的に扱うことができます。 base($include_index = true) base メソッドはベース URL を返します。 なお、 $include_index を false にセットした場合は、 index_file (インデックスファイル名) を除いた URL を返します。 注意してください : もし app/config/config.php で index_file がセットされていない場合は $include_index 変数は無視されます。 静的

    iww
    iww 2015/08/02
    ここで言ってる URI には、FUELの置いてあるディレクトリそのものは含まれないことに注意する。 base() + string() = アクセスしたときのURL
  • 1