This commit is contained in:
cjd
2026-02-05 22:22:10 +08:00
parent fef9fe0c31
commit bf3a2e6971
273 changed files with 30605 additions and 0 deletions

20
web/tools/php82.ps1 Normal file
View File

@@ -0,0 +1,20 @@
param(
[Parameter(ValueFromRemainingArguments = $true)]
[string[]]$Args
)
$php = "D:/phpstudy_pro/Extensions/php/php8.2.9nts/php.exe"
$extDir = "D:/phpstudy_pro/Extensions/php/php8.2.9nts/ext"
$phpArgs = @(
"-n",
"-d", "extension_dir=$extDir",
"-d", "extension=openssl",
"-d", "extension=mbstring",
"-d", "extension=fileinfo",
"-d", "extension=curl",
"-d", "extension=zip",
"-d", "extension=pdo_mysql"
)
& $php @phpArgs @Args
exit $LASTEXITCODE