Add mbregex support for windows (#351)

* add mbregex support for windows

* cs fix

* fix curl http2 support
This commit is contained in:
Jerry Ma
2024-02-23 11:41:35 +08:00
committed by GitHub
parent 4ab7b6bfdc
commit df0e37cd0f
6 changed files with 56 additions and 5 deletions

View File

@@ -15,6 +15,8 @@ class mbstring extends Extension
$arg = '--enable-mbstring';
if ($this->builder->getExt('mbregex') === null) {
$arg .= ' --disable-mbregex';
} else {
$arg .= ' --enable-mbregex';
}
return $arg;
}