facebook twitter hatena line email

Php/fuelphp/helloworld

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

httpにアクセスすると以下コントローラーにアクセスする

http://project1.example.com/welcome/hello/10

コントローラー

project1/fuel/app/classes/controller/welcome.php

class Controller_Welcome extends Controller
{
    public function action_hello($id = null)
    {
         // $id = 10
    }
}