API

สร้าง endpoint ในโฟลเดอร์ api/ แล้วเรียกตรงผ่าน URL เช่น /api/users.php หรือ /api/ (ใช้ api/index.php).

ตัวอย่าง API

<?php
require_once __DIR__ . '/../vendor/autoload.php';
header('Content-Type: application/json; charset=utf-8');
$db = composables('useDB')['connect']();
echo json_encode(['status' => 'ok']);