'PHP binary distributions for Windows' 的实际含义是什么?它与 PHP 源代码有何不同?

What does actually mean by 'PHP binary distributions for Windows'? How it is different from PHP source code?

我从 PHP Manual

中看到以下声明

PHP source code and binary distributions for Windows can be found at » http://www.php.net/downloads.php. We recommend you to choose a » mirror nearest to you for downloading the distributions.

这种说法在我心中产生了以下疑问:

  1. 'PHP binary distributions for Windows'的实际含义是什么?
  2. 为什么 'PHP binary distributions' 其他操作系统如 Linux, Mac OS X, RISC OS,还有其他人?
  3. 我已经在 Windows 10[=38 的 运行 机器上安装了 PHP 7.2.3 =] 操作系统和 XAMPP 软件包最新副本 然后我安装了 'PHP binary distributions for Windows' ?
  4. 'PHP binary distributions for Windows'的use/need/necessity/benefit/advantage是什么?
  5. 'PHP binary distributions for Windows' 是否只能在官方 PHP 网站上下载?
  6. 参考上述来自PHP 手册?

请大神用通俗易懂的语言为我解开以上疑惑

  1. 二进制分发版是适用于 Windows 等操作系统的可执行程序。不同的操作系统和不同的处理器需要不同的方法来处理 运行 程序。因此有不同的分布,它们的生成方式不同。
  2. 见 1.
  3. 这取决于 xampp 版本,但是是的,最新的 xampp 确实有 php 的 7.2.3 版本(如果只要因为您在 xampp 环境中工作)
  4. 您需要它来在本地计算机上开发 php 代码。还有其他方法,对于您的知识水平而言可能会稍微复杂一些。二进制文件大多开箱即用,或多或少。
  5. 还有其他的,比如在 xampp 包中,但 php 网站通常是最好的来源。
  6. 源代码是构建二进制文件的程序代码。您不能按原样使用它。