2021-02-12 18:34:27 +05:30
|
|
|
Function Get-ICUUrl() {
|
|
|
|
Param (
|
|
|
|
[Parameter(Position = 0, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
$icu_version,
|
|
|
|
[Parameter(Position = 1, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
$arch,
|
|
|
|
[Parameter(Position = 2, Mandatory = $true)]
|
|
|
|
[ValidateNotNull()]
|
|
|
|
$vs_version
|
|
|
|
)
|
|
|
|
$trunk = "https://windows.php.net"
|
|
|
|
$urls=@("${trunk}/downloads/php-sdk/deps/${vs_version}/${arch}", "${trunk}/downloads/php-sdk/deps/archives/${vs_version}/${arch}")
|
|
|
|
foreach ($url in $urls) {
|
2023-02-03 12:59:37 +05:30
|
|
|
$web_content = Get-File -Url $url
|
2021-02-12 18:34:27 +05:30
|
|
|
foreach ($link in $web_content.Links) {
|
|
|
|
if ($link -match "/.*ICU-${icu_version}.*/") {
|
|
|
|
return $trunk + $link.HREF
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Function Repair-ICU() {
|
|
|
|
$icu = deplister $ext_dir\php_http.dll | Select-String "icu[a-z]+(\d+).dll,([A-Z]+)" | Foreach-Object { $_.Matches }
|
|
|
|
if($icu -and $icu.Groups[2].Value -ne 'OK') {
|
|
|
|
$vs = "vs" + $installed.VCVersion
|
|
|
|
if ($installed.VCVersion -lt 16) {
|
|
|
|
$vs = "vc" + $installed.VCVersion
|
|
|
|
}
|
|
|
|
$zip_url = Get-ICUUrl $icu.Groups[1].Value $installed.Architecture $vs
|
|
|
|
if ($zip_url -ne '') {
|
2021-08-25 09:46:36 +05:30
|
|
|
New-Item -Path "$php_dir" -Name "icu" -ItemType "directory" -Force > $null 2>&1
|
2023-02-03 12:59:37 +05:30
|
|
|
Get-File -Url $zip_url -OutFile "$php_dir\icu\icu.zip"
|
2021-02-12 18:34:27 +05:30
|
|
|
Expand-Archive -Path $php_dir\icu\icu.zip -DestinationPath $php_dir\icu -Force
|
|
|
|
Get-ChildItem $php_dir\icu\bin -Filter *.dll | Copy-Item -Destination $php_dir -Force
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Function Add-Http() {
|
2022-03-15 11:28:20 +05:30
|
|
|
Add-Extension iconv >$null 2>&1
|
2021-02-12 18:34:27 +05:30
|
|
|
Add-Extension raphf >$null 2>&1
|
|
|
|
if($version -lt '8.0') {
|
|
|
|
Add-Extension propro >$null 2>&1
|
|
|
|
}
|
|
|
|
Add-Extension pecl_http >$null 2>&1
|
|
|
|
Repair-ICU
|
2023-01-18 09:00:28 +05:30
|
|
|
Add-ExtensionLog http "Installed and enabled"
|
2021-02-12 18:34:27 +05:30
|
|
|
}
|