我需要帮助来获取 link for PHP 5.0.0 x64(64 位)二进制文件 for Windows OS

I need help to get the link for PHP 5.0.0 x64 (64 Bit) binary for Windows OS

我需要在我的 apache 网络服务器上将遗留 php 应用程序获取到 运行,但未能获取 window 的 php 5.0.0 二进制 x64 位OS 因为 laragon 服务器上的 apache 程序 运行ning 不支持 32 位二进制文​​件。 客户打算在本地主机上使用它来管理财务,因此不会在线部署。 旧的 php 网络应用程序使用了很多旧函数,例如 mysql_connect(),这些函数已被弃用。而且我没有足够的时间将它们转换为使用 mysqli_ * 函数,因为代码库有点大并且有很多杂乱无章的项目结构,所以我决定只 运行 这个项目。这是代码库中的示例代码,因为大多数方法都已弃用。

$host           ="localhost";
        $user           = "root";
        $password       = "hey1234";
        $db             = "microsave";
        
        mysql_connect($host,$user,$password);   
        mysql_select_db($db);
        require_once("../mysql.class.php"); 
        $db =& new db_mysql("localhost", "root", "hey1234", $db);

我试过官方 PHP 下载站点但没有成功,我设法只获得 php 5.3.54 *64 位二进制文​​件。 这些是我尝试下载 PHP 5.0.0 window 64 位二进制文​​件但未能获得 link[= 的所有 PHP link 19=]

请帮我下载 link 二进制文件 php 5.0.0 64 位

来自Wikipedia

Over time, PHP interpreters became available on most existing 32-bit and 64-bit operating systems, either by building them from the PHP source code, or by using pre-built binaries.[34] For PHP versions 5.3 and 5.4, the only available Microsoft Windows binary distributions were 32-bit IA-32 builds,[35][36] requiring Windows 32-bit compatibility mode while using Internet Information Services (IIS) on a 64-bit Windows platform. PHP version 5.5 made the 64-bit x86-64 builds available for Microsoft Windows.[37]

您想要 运行 的 PHP 版本从来没有 Windows 的 64 位版本。