📅  最后修改于: 2023-12-03 15:15:12.422000             🧑  作者: Mango
FuelPHP 是一个简单的 PHP Web 开发框架,它的目标是提供开发人员快速构建可靠的 Web 应用程序所需的所有工具和实用程序。
git clone https://github.com/fuel/fuel.git
cd fuel
composer install
mysql -uroot -p < fuel/example/db/example.sql
fuel/app/config/development/db.php
:return array(
'default' => array(
'connection' => array(
'dsn' => 'mysql:host=localhost;dbname=fuel_db',
'username' => 'root',
'password' => '',
),
),
);
php oil server
http://localhost:8000/
创建控制器:
php oil generate controller hello
编辑 fuel/app/classes/controller/hello.php
:
<?php
class Controller_Hello extends Controller
{
public function action_index()
{
return Response::forge('Hello, world!');
}
}
访问 http://localhost:8000/hello/
即可看到输出 Hello, world!
。