dbsms_primeidc init...1

This commit is contained in:
최준흠 2025-04-01 16:01:14 +09:00
parent 889be99689
commit 89032aa82f

View File

@ -11,7 +11,7 @@ try {
// 테스트 URL : "http://test.com/Control/Method/arg1/arg2";
// 요청된 URL 경로 가져오기
$url = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : false;
$url = !$url && isset($argv[1]) ? $argv[1] : false;
// $url = !$url && isset($argv[1]) ? $argv[1] : false;
$route = new Route(trim($url, '/'));
return $route->run();
} catch (\Exception $e) {