Add cgi SAPI

This commit is contained in:
crazywhalecc
2025-09-04 14:05:00 +08:00
parent 4f6e646812
commit a2c5c7e6e6
14 changed files with 276 additions and 171 deletions

View File

@@ -392,6 +392,9 @@ abstract class BuilderBase
if (($type & BUILD_TARGET_FRANKENPHP) === BUILD_TARGET_FRANKENPHP) {
$ls[] = 'frankenphp';
}
if (($type & BUILD_TARGET_CGI) === BUILD_TARGET_CGI) {
$ls[] = 'cgi';
}
return implode(', ', $ls);
}