Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,973,157

Downloads of v 5.6.4:

715

Last Update:

12 Dec 2014

Package Maintainer(s):

Software Author(s):

  • PHP Authors

Tags:

php admin

PHP (Hypertext Preprocessor)

This is not the latest version of PHP (Hypertext Preprocessor) available.

  • 1
  • 2
  • 3

5.6.4 | Updated: 12 Dec 2014

Downloads:

1,973,157

Downloads of v 5.6.4:

715

Software Author(s):

  • PHP Authors

Tags:

php admin

PHP (Hypertext Preprocessor) 5.6.4

This is not the latest version of PHP (Hypertext Preprocessor) available.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by PHP Authors. The inclusion of PHP Authors trademark(s), if any, upon this webpage is solely to identify PHP Authors goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install PHP (Hypertext Preprocessor), run the following command from the command line or from PowerShell:

>

To upgrade PHP (Hypertext Preprocessor), run the following command from the command line or from PowerShell:

>

To uninstall PHP (Hypertext Preprocessor), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade php -y --source="'INTERNAL REPO URL'" --version="'5.6.4'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade php -y --source="'INTERNAL REPO URL'" --version="'5.6.4'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install php
  win_chocolatey:
    name: php
    version: '5.6.4'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'php' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '5.6.4'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller php
{
    Name     = "php"
    Version  = "5.6.4"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'php':
  ensure   => '5.6.4',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator gep13 on 22 Dec 2015.

Description

PHP is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly.


tools\chocolateyInstall.ps1
Function DoesWebPageExist($uri) {
    try {
        $webClient =[System.Net.HttpWebRequest] [System.Net.WebRequest]::Create($uri)
        $webClient.Method = "HEAD"
        $webClient.Timeout = 3000
        $webClient.GetResponse()
    } 
    catch [System.Net.WebException] {
        return $FALSE;
    }
    return $TRUE;
}

Function AddArchivePathToUrl($url) {
    $newUrl = $url
	$lix = $url.LastIndexOf("/")
	if ($lix -ne -1)  {
		$newUrl = $url.SubString(0, $lix) + "/archives" + $url.SubString($lix)
	}
	return $newUrl
}

write-host 'Please make sure you have CGI installed in IIS for local hosting'
$packageName = 'php' 
$url = 'http://windows.php.net/downloads/releases/php-5.6.4-nts-Win32-VC11-x86.zip' 
$url64 = 'http://windows.php.net/downloads/releases/php-5.6.4-nts-Win32-VC11-x64.zip' 

write-host 'Locating package...'
if (-Not (DoesWebPageExist($url))) {
	Echo ("Checking archive...")
	$url = AddArchivePathToUrl($url)
	$url64 = AddArchivePathToUrl($url64) # Assuming the 64 bit version is archived simultaneously as the 32 bit one
}
$validExitCodes = @(0)
$targetFolder = Join-Path $(Get-BinRoot) $packageName
Install-ChocolateyZipPackage "$packageName" "$url" "$targetFolder" "$url64"
echo ("PHP installed in " + $targetFolder)
tools\chocolateyUninstall.ps1
write-host 'Please make sure you have CGI installed in IIS'
$packageName = 'php'
$validExitCodes = @(0)
$targetFolder = Join-Path $(Get-BinRoot) $packageName
Echo ("Deleting " + $targetFolder)
Remove-Item -Force -Recurse $targetFolder

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
PHP (Hypertext Preprocessor) 8.3.10 6921 Tuesday, July 30, 2024 Approved
PHP (Hypertext Preprocessor) 8.3.9 6751 Wednesday, July 3, 2024 Approved
PHP (Hypertext Preprocessor) 8.3.8 7446 Wednesday, June 5, 2024 Approved
PHP (Hypertext Preprocessor) 8.3.7 7215 Wednesday, May 8, 2024 Approved
PHP (Hypertext Preprocessor) 8.3.6 7511 Wednesday, April 10, 2024 Approved
PHP (Hypertext Preprocessor) 8.3.4 6886 Wednesday, March 13, 2024 Approved
PHP (Hypertext Preprocessor) 8.3.3 6989 Wednesday, February 14, 2024 Approved
PHP (Hypertext Preprocessor) 8.3.2 6438 Wednesday, January 17, 2024 Approved
PHP (Hypertext Preprocessor) 8.3.1 5728 Wednesday, December 20, 2023 Approved
PHP (Hypertext Preprocessor) 8.3.0 6399 Wednesday, November 22, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.23 59 Wednesday, August 28, 2024 Approved
PHP (Hypertext Preprocessor) 8.2.22 86 Tuesday, July 30, 2024 Approved
PHP (Hypertext Preprocessor) 8.2.21 88 Wednesday, July 3, 2024 Approved
PHP (Hypertext Preprocessor) 8.2.20 155 Wednesday, June 5, 2024 Approved
PHP (Hypertext Preprocessor) 8.2.19 96 Wednesday, May 8, 2024 Approved
PHP (Hypertext Preprocessor) 8.2.18 336 Wednesday, April 10, 2024 Approved
PHP (Hypertext Preprocessor) 8.2.17 173 Wednesday, March 13, 2024 Approved
PHP (Hypertext Preprocessor) 8.2.16 1231 Wednesday, February 14, 2024 Approved
PHP (Hypertext Preprocessor) 8.2.15 1528 Wednesday, January 17, 2024 Approved
PHP (Hypertext Preprocessor) 8.2.14 1404 Wednesday, December 20, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.13 1979 Wednesday, November 22, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.12 7360 Wednesday, October 25, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.11 7909 Wednesday, September 27, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.10 7436 Wednesday, August 30, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.9 7469 Wednesday, August 2, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.8 7444 Wednesday, July 5, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.7 6861 Wednesday, June 7, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.6 7033 Tuesday, May 9, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.5 6658 Wednesday, April 12, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.4 6792 Wednesday, March 15, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.3 6715 Tuesday, February 14, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.2 3948 Wednesday, February 1, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.1 6519 Wednesday, January 4, 2023 Approved
PHP (Hypertext Preprocessor) 8.2.0 7272 Tuesday, December 6, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.29 1631 Wednesday, June 5, 2024 Approved
PHP (Hypertext Preprocessor) 8.1.28 994 Wednesday, April 10, 2024 Approved
PHP (Hypertext Preprocessor) 8.1.27 2300 Wednesday, December 20, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.26 494 Wednesday, November 22, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.25 504 Wednesday, October 25, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.24 630 Wednesday, September 27, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.23 1454 Saturday, September 2, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.22 854 Wednesday, August 2, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.21 537 Wednesday, July 5, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.20 744 Wednesday, June 7, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.19 378 Wednesday, May 10, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.18 354 Wednesday, April 12, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.17 357 Wednesday, March 15, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.16 2779 Wednesday, February 15, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.15 146 Wednesday, February 1, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.14 516 Wednesday, January 4, 2023 Approved
PHP (Hypertext Preprocessor) 8.1.13 5424 Tuesday, November 22, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.12 13268 Wednesday, October 26, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.11 8712 Wednesday, September 28, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.10 23897 Wednesday, August 31, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.9 8563 Wednesday, August 3, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.8 7256 Wednesday, July 6, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.7 9761 Wednesday, June 8, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.6 9430 Wednesday, May 11, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.5 9907 Wednesday, April 13, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.4 10494 Wednesday, March 16, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.3 9789 Wednesday, February 16, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.2 10632 Wednesday, January 19, 2022 Approved
PHP (Hypertext Preprocessor) 8.1.1 12271 Wednesday, December 15, 2021 Approved
PHP (Hypertext Preprocessor) 8.0.30 2064 Friday, September 1, 2023 Approved
PHP (Hypertext Preprocessor) 8.0.29 968 Thursday, June 8, 2023 Approved
PHP (Hypertext Preprocessor) 8.0.28 3467 Wednesday, February 15, 2023 Approved
PHP (Hypertext Preprocessor) 8.0.27 1229 Wednesday, January 4, 2023 Approved
PHP (Hypertext Preprocessor) 8.0.26 1020 Wednesday, November 23, 2022 Approved
PHP (Hypertext Preprocessor) 8.0.25 604 Tuesday, October 25, 2022 Approved
PHP (Hypertext Preprocessor) 8.0.24 641 Thursday, September 29, 2022 Approved
PHP (Hypertext Preprocessor) 8.0.23 799 Tuesday, August 30, 2022 Approved
PHP (Hypertext Preprocessor) 8.0.22 708 Tuesday, August 2, 2022 Approved
PHP (Hypertext Preprocessor) 8.0.21 363 Tuesday, July 5, 2022 Approved
PHP (Hypertext Preprocessor) 8.0.20 1115 Wednesday, June 8, 2022 Approved
PHP (Hypertext Preprocessor) 8.0.19 1097 Tuesday, May 10, 2022 Approved
PHP (Hypertext Preprocessor) 8.0.18 790 Wednesday, April 13, 2022 Approved
PHP (Hypertext Preprocessor) 8.0.17 554 Tuesday, March 15, 2022 Approved
PHP (Hypertext Preprocessor) 8.0.16 229 Wednesday, February 16, 2022 Approved
PHP (Hypertext Preprocessor) 8.0.15 234 Tuesday, January 18, 2022 Approved
PHP (Hypertext Preprocessor) 8.0.14 381 Thursday, December 16, 2021 Approved
PHP (Hypertext Preprocessor) 8.0.10 25759 Wednesday, August 25, 2021 Approved
PHP (Hypertext Preprocessor) 8.0.9 7582 Thursday, July 29, 2021 Approved
PHP (Hypertext Preprocessor) 8.0.8 7913 Wednesday, June 30, 2021 Approved
PHP (Hypertext Preprocessor) 8.0.7 7342 Wednesday, June 2, 2021 Approved
PHP (Hypertext Preprocessor) 8.0.6 6781 Wednesday, May 5, 2021 Approved
PHP (Hypertext Preprocessor) 8.0.5 147 Wednesday, April 28, 2021 Approved
PHP (Hypertext Preprocessor) 8.0.3 14364 Wednesday, March 3, 2021 Approved
PHP (Hypertext Preprocessor) 8.0.2 1412 Thursday, February 4, 2021 Approved
PHP (Hypertext Preprocessor) 8.0.1 16956 Wednesday, January 6, 2021 Approved
PHP (Hypertext Preprocessor) 8.0.0.20201221 4750 Monday, December 21, 2020 Approved
PHP (Hypertext Preprocessor) 8.0.0 9002 Friday, November 27, 2020 Approved
PHP (Hypertext Preprocessor) 7.4.33 3168 Thursday, November 3, 2022 Approved
PHP (Hypertext Preprocessor) 7.4.32 539 Thursday, September 29, 2022 Approved
PHP (Hypertext Preprocessor) 7.4.30 2670 Wednesday, June 8, 2022 Approved
PHP (Hypertext Preprocessor) 7.4.29 837 Thursday, April 14, 2022 Approved
PHP (Hypertext Preprocessor) 7.4.28 15016 Thursday, February 24, 2022 Approved
PHP (Hypertext Preprocessor) 7.4.27 4970 Wednesday, December 15, 2021 Approved
PHP (Hypertext Preprocessor) 7.4.23 1115 Wednesday, August 25, 2021 Approved
PHP (Hypertext Preprocessor) 7.4.22 1281 Wednesday, July 28, 2021 Approved
PHP (Hypertext Preprocessor) 7.4.21 1139 Wednesday, June 30, 2021 Approved
PHP (Hypertext Preprocessor) 7.4.20 1109 Wednesday, June 2, 2021 Approved
PHP (Hypertext Preprocessor) 7.4.19 2382 Tuesday, May 4, 2021 Approved
PHP (Hypertext Preprocessor) 7.4.18 526 Wednesday, April 28, 2021 Approved
PHP (Hypertext Preprocessor) 7.4.16 2943 Tuesday, March 2, 2021 Approved
PHP (Hypertext Preprocessor) 7.4.14 3075 Tuesday, January 5, 2021 Approved
PHP (Hypertext Preprocessor) 7.4.13 8319 Tuesday, November 24, 2020 Approved
PHP (Hypertext Preprocessor) 7.4.11 18023 Tuesday, September 29, 2020 Approved
PHP (Hypertext Preprocessor) 7.4.9 16162 Wednesday, August 5, 2020 Approved
PHP (Hypertext Preprocessor) 7.4.7 15736 Wednesday, June 10, 2020 Approved
PHP (Hypertext Preprocessor) 7.4.6 5994 Thursday, May 28, 2020 Approved
PHP (Hypertext Preprocessor) 7.4.5 15373 Wednesday, April 15, 2020 Approved
PHP (Hypertext Preprocessor) 7.4.3 17502 Friday, February 21, 2020 Approved
PHP (Hypertext Preprocessor) 7.4.2 8700 Wednesday, January 22, 2020 Approved
PHP (Hypertext Preprocessor) 7.4.1 9694 Tuesday, December 24, 2019 Approved
PHP (Hypertext Preprocessor) 7.4.0 13324 Wednesday, November 27, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.30 6874 Wednesday, August 25, 2021 Approved
PHP (Hypertext Preprocessor) 7.3.29 1749 Wednesday, June 30, 2021 Approved
PHP (Hypertext Preprocessor) 7.3.28 3332 Wednesday, April 28, 2021 Approved
PHP (Hypertext Preprocessor) 7.3.26 3328 Tuesday, January 5, 2021 Approved
PHP (Hypertext Preprocessor) 7.3.25 3530 Tuesday, November 24, 2020 Approved
PHP (Hypertext Preprocessor) 7.3.24 1014 Tuesday, October 27, 2020 Approved
PHP (Hypertext Preprocessor) 7.3.23 2015 Tuesday, September 29, 2020 Approved
PHP (Hypertext Preprocessor) 7.3.22 1395 Tuesday, September 1, 2020 Approved
PHP (Hypertext Preprocessor) 7.3.21 1382 Wednesday, August 5, 2020 Approved
PHP (Hypertext Preprocessor) 7.3.20 1048 Tuesday, July 7, 2020 Approved
PHP (Hypertext Preprocessor) 7.3.19 1286 Wednesday, June 10, 2020 Approved
PHP (Hypertext Preprocessor) 7.3.18 1185 Tuesday, May 12, 2020 Approved
PHP (Hypertext Preprocessor) 7.3.17 1175 Wednesday, April 15, 2020 Approved
PHP (Hypertext Preprocessor) 7.3.15 3389 Tuesday, February 18, 2020 Approved
PHP (Hypertext Preprocessor) 7.3.14 1946 Tuesday, January 21, 2020 Approved
PHP (Hypertext Preprocessor) 7.3.13 2731 Wednesday, December 18, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.12 12648 Wednesday, November 20, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.11 9887 Tuesday, October 22, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.10 12105 Wednesday, September 25, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.9 10932 Wednesday, August 28, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.8 7992 Tuesday, August 6, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.7 15115 Wednesday, July 3, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.6 13259 Wednesday, May 29, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.5 9801 Wednesday, May 1, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.4 8469 Wednesday, April 3, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.3 7280 Thursday, March 14, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.1 60432 Thursday, January 10, 2019 Approved
PHP (Hypertext Preprocessor) 7.3.0 33591 Thursday, December 6, 2018 Approved
PHP (Hypertext Preprocessor) 7.2.34 24228 Thursday, October 1, 2020 Approved
PHP (Hypertext Preprocessor) 7.2.33 2565 Wednesday, August 5, 2020 Approved
PHP (Hypertext Preprocessor) 7.2.32 1060 Wednesday, July 8, 2020 Approved
PHP (Hypertext Preprocessor) 7.2.31 2322 Tuesday, May 12, 2020 Approved
PHP (Hypertext Preprocessor) 7.2.30 1373 Wednesday, April 15, 2020 Approved
PHP (Hypertext Preprocessor) 7.2.29 1738 Tuesday, March 17, 2020 Approved
PHP (Hypertext Preprocessor) 7.2.28 1711 Tuesday, February 18, 2020 Approved
PHP (Hypertext Preprocessor) 7.2.27 1677 Thursday, January 23, 2020 Approved
PHP (Hypertext Preprocessor) 7.2.26 4559 Thursday, December 19, 2019 Approved
PHP (Hypertext Preprocessor) 7.2.25 1972 Thursday, November 21, 2019 Approved
PHP (Hypertext Preprocessor) 7.2.24 1634 Tuesday, October 22, 2019 Approved
PHP (Hypertext Preprocessor) 7.2.23 4159 Friday, September 27, 2019 Approved
PHP (Hypertext Preprocessor) 7.2.22 1947 Wednesday, August 28, 2019 Approved
PHP (Hypertext Preprocessor) 7.2.20 4474 Friday, July 5, 2019 Approved
PHP (Hypertext Preprocessor) 7.2.19 4889 Wednesday, May 29, 2019 Approved
PHP (Hypertext Preprocessor) 7.2.18 127259 Wednesday, May 1, 2019 Approved
PHP (Hypertext Preprocessor) 7.2.17 3881 Wednesday, April 3, 2019 Approved
PHP (Hypertext Preprocessor) 7.2.15 7060 Friday, February 8, 2019 Approved
PHP (Hypertext Preprocessor) 7.2.14 2545 Thursday, January 10, 2019 Approved
PHP (Hypertext Preprocessor) 7.2.13 6042 Thursday, December 6, 2018 Approved
PHP (Hypertext Preprocessor) 7.2.12 29187 Thursday, November 8, 2018 Approved
PHP (Hypertext Preprocessor) 7.2.10 46161 Thursday, September 13, 2018 Approved
PHP (Hypertext Preprocessor) 7.2.9 23523 Thursday, August 16, 2018 Approved
PHP (Hypertext Preprocessor) 7.2.8 21211 Wednesday, July 18, 2018 Approved
PHP (Hypertext Preprocessor) 7.2.7 21902 Wednesday, June 20, 2018 Approved
PHP (Hypertext Preprocessor) 7.2.5 61189 Thursday, April 26, 2018 Approved
PHP (Hypertext Preprocessor) 7.2.4 5107 Thursday, March 29, 2018 Approved
PHP (Hypertext Preprocessor) 7.2.3 11807 Thursday, March 1, 2018 Approved
PHP (Hypertext Preprocessor) 7.2.2 6913 Thursday, February 1, 2018 Approved
PHP (Hypertext Preprocessor) 7.2.1 7121 Saturday, January 6, 2018 Approved
PHP (Hypertext Preprocessor) 7.2.0 27179 Friday, December 1, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.33 14916 Wednesday, October 23, 2019 Approved
PHP (Hypertext Preprocessor) 7.1.32 2732 Wednesday, August 28, 2019 Approved
PHP (Hypertext Preprocessor) 7.1.31 1061 Wednesday, July 31, 2019 Approved
PHP (Hypertext Preprocessor) 7.1.30 3004 Tuesday, May 28, 2019 Approved
PHP (Hypertext Preprocessor) 7.1.29 3782 Wednesday, May 1, 2019 Approved
PHP (Hypertext Preprocessor) 7.1.28 2607 Wednesday, April 3, 2019 Approved
PHP (Hypertext Preprocessor) 7.1.27 3268 Thursday, March 7, 2019 Approved
PHP (Hypertext Preprocessor) 7.1.26 3906 Thursday, January 10, 2019 Approved
PHP (Hypertext Preprocessor) 7.1.25 3081 Thursday, December 6, 2018 Approved
PHP (Hypertext Preprocessor) 7.1.24 2671 Thursday, November 8, 2018 Approved
PHP (Hypertext Preprocessor) 7.1.22 2316 Thursday, September 13, 2018 Approved
PHP (Hypertext Preprocessor) 7.1.21 3450 Thursday, August 16, 2018 Approved
PHP (Hypertext Preprocessor) 7.1.20 4061 Thursday, July 19, 2018 Approved
PHP (Hypertext Preprocessor) 7.1.19 4648 Thursday, June 21, 2018 Approved
PHP (Hypertext Preprocessor) 7.1.18 3711 Friday, May 25, 2018 Approved
PHP (Hypertext Preprocessor) 7.1.17 3003 Thursday, April 26, 2018 Approved
PHP (Hypertext Preprocessor) 7.1.16 3650 Thursday, March 29, 2018 Approved
PHP (Hypertext Preprocessor) 7.1.15 5190 Thursday, March 1, 2018 Approved
PHP (Hypertext Preprocessor) 7.1.14 5661 Thursday, February 1, 2018 Approved
PHP (Hypertext Preprocessor) 7.1.13 2454 Saturday, January 6, 2018 Approved
PHP (Hypertext Preprocessor) 7.1.12 9840 Thursday, November 23, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.11 9345 Wednesday, October 25, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.10 9067 Wednesday, September 27, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.8 19790 Wednesday, August 2, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.7 14124 Thursday, July 6, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.6 19011 Thursday, June 8, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.5 17182 Wednesday, May 10, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.4 17630 Wednesday, April 12, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.3 20038 Thursday, March 16, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.2 31266 Wednesday, February 15, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.1.20170212 2190 Sunday, February 12, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.1 6002 Thursday, January 19, 2017 Approved
PHP (Hypertext Preprocessor) 7.1.0 8563 Friday, December 2, 2016 Approved
PHP (Hypertext Preprocessor) 7.0.33 17387 Friday, December 7, 2018 Approved
PHP (Hypertext Preprocessor) 7.0.32 5777 Thursday, September 13, 2018 Approved
PHP (Hypertext Preprocessor) 7.0.31 6737 Friday, July 20, 2018 Approved
PHP (Hypertext Preprocessor) 7.0.30 9646 Thursday, April 26, 2018 Approved
PHP (Hypertext Preprocessor) 7.0.28 2515 Thursday, March 1, 2018 Approved
PHP (Hypertext Preprocessor) 7.0.27 4692 Saturday, January 6, 2018 Approved
PHP (Hypertext Preprocessor) 7.0.26 3278 Thursday, November 23, 2017 Approved
PHP (Hypertext Preprocessor) 7.0.25 1987 Wednesday, October 25, 2017 Approved
PHP (Hypertext Preprocessor) 7.0.24 2025 Tuesday, September 26, 2017 Approved
PHP (Hypertext Preprocessor) 7.0.23 2380 Tuesday, August 29, 2017 Approved
PHP (Hypertext Preprocessor) 7.0.22 3309 Wednesday, August 2, 2017 Approved
PHP (Hypertext Preprocessor) 7.0.21 3352 Thursday, July 6, 2017 Approved
PHP (Hypertext Preprocessor) 7.0.20 4352 Wednesday, June 7, 2017 Approved
PHP (Hypertext Preprocessor) 7.0.19 5581 Tuesday, May 9, 2017 Approved
PHP (Hypertext Preprocessor) 7.0.18 3524 Wednesday, April 12, 2017 Approved
PHP (Hypertext Preprocessor) 7.0.17 4472 Thursday, March 16, 2017 Approved
PHP (Hypertext Preprocessor) 7.0.16 4055 Tuesday, February 14, 2017 Approved
PHP (Hypertext Preprocessor) 7.0.15 449 Sunday, February 12, 2017 Approved
PHP (Hypertext Preprocessor) 7.0.13 1820 Monday, November 28, 2016 Approved
PHP (Hypertext Preprocessor) 7.0.9 134856 Wednesday, July 20, 2016 Approved
PHP (Hypertext Preprocessor) 7.0.8 526 Wednesday, June 22, 2016 Approved
PHP (Hypertext Preprocessor) 7.0.7 1267 Wednesday, May 25, 2016 Approved
PHP (Hypertext Preprocessor) 7.0.6 783 Sunday, May 8, 2016 Approved
PHP (Hypertext Preprocessor) 7.0.5 3608 Wednesday, March 30, 2016 Approved
PHP (Hypertext Preprocessor) 7.0.4 3116 Friday, March 4, 2016 Approved
PHP (Hypertext Preprocessor) 7.0.3 3892 Wednesday, February 3, 2016 Approved
PHP (Hypertext Preprocessor) 7.0.2 2595 Wednesday, January 6, 2016 Approved
PHP (Hypertext Preprocessor) 7.0.1 2233 Wednesday, December 16, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.40 13989 Thursday, January 10, 2019 Approved
PHP (Hypertext Preprocessor) 5.6.39 1666 Friday, December 7, 2018 Approved
PHP (Hypertext Preprocessor) 5.6.38 3082 Friday, September 14, 2018 Approved
PHP (Hypertext Preprocessor) 5.6.37 2379 Friday, July 20, 2018 Approved
PHP (Hypertext Preprocessor) 5.6.36 3566 Thursday, April 26, 2018 Approved
PHP (Hypertext Preprocessor) 5.6.35 1846 Friday, March 30, 2018 Approved
PHP (Hypertext Preprocessor) 5.6.34 1451 Thursday, March 1, 2018 Approved
PHP (Hypertext Preprocessor) 5.6.33 2926 Saturday, January 6, 2018 Approved
PHP (Hypertext Preprocessor) 5.6.32 2594 Thursday, October 26, 2017 Approved
PHP (Hypertext Preprocessor) 5.6.31 6222 Thursday, July 6, 2017 Approved
PHP (Hypertext Preprocessor) 5.6.30 18530 Sunday, February 12, 2017 Approved
PHP (Hypertext Preprocessor) 5.6.17 4766 Wednesday, February 3, 2016 Approved
PHP (Hypertext Preprocessor) 5.6.16 962 Thursday, November 26, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.15 512 Thursday, October 29, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.14 446 Thursday, October 1, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.13 525 Friday, September 4, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.12 537 Thursday, August 6, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.11 604 Sunday, July 12, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.10 500 Thursday, June 11, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.9 4352 Friday, May 15, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.8 612 Thursday, April 16, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.7 1396 Monday, March 23, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.6 545 Thursday, February 19, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.5 543 Thursday, January 22, 2015 Approved
PHP (Hypertext Preprocessor) 5.6.4 715 Friday, December 12, 2014 Approved
PHP (Hypertext Preprocessor) 5.6.3 20215 Thursday, November 13, 2014 Approved
PHP (Hypertext Preprocessor) 5.6.2 1135 Thursday, October 16, 2014 Approved
PHP (Hypertext Preprocessor) 5.6.1 841 Friday, September 26, 2014 Approved
PHP (Hypertext Preprocessor) 5.6.0 1471 Thursday, August 28, 2014 Approved
PHP (Hypertext Preprocessor) 5.5.38 9121 Thursday, February 9, 2017 Approved
PHP (Hypertext Preprocessor) 5.5.16 813 Thursday, August 21, 2014 Approved
PHP (Hypertext Preprocessor) 5.5.15 832 Tuesday, July 29, 2014 Approved
PHP (Hypertext Preprocessor) 5.5.14 786 Tuesday, July 1, 2014 Approved
PHP (Hypertext Preprocessor) 5.5.13 752 Thursday, June 5, 2014 Approved
PHP (Hypertext Preprocessor) 5.5.12 664 Wednesday, May 21, 2014 Approved
PHP (Hypertext Preprocessor) 5.5.11 1108 Tuesday, April 22, 2014 Approved
PHP (Hypertext Preprocessor) 5.4.45 2265 Thursday, February 9, 2017 Approved
PHP (Hypertext Preprocessor) 5.3.29 759 Thursday, February 9, 2017 Approved
PHP (Hypertext Preprocessor) 5.3.28 1188 Thursday, December 12, 2013 Approved
PHP (Hypertext Preprocessor) 5.3.27 876 Friday, July 12, 2013 Approved
PHP (Hypertext Preprocessor) 5.3.26 681 Thursday, June 6, 2013 Approved
PHP (Hypertext Preprocessor) 5.3.25 683 Thursday, May 9, 2013 Approved
PHP (Hypertext Preprocessor) 5.3.24 641 Thursday, April 11, 2013 Approved
PHP (Hypertext Preprocessor) 5.3.23 634 Friday, March 15, 2013 Approved
PHP (Hypertext Preprocessor) 5.3.22 641 Thursday, February 21, 2013 Approved
PHP (Hypertext Preprocessor) 5.3.21 665 Thursday, January 17, 2013 Approved
PHP (Hypertext Preprocessor) 5.3.20 644 Thursday, December 20, 2012 Approved
PHP (Hypertext Preprocessor) 5.3.19 629 Tuesday, November 27, 2012 Approved
PHP (Hypertext Preprocessor) 5.3.18 677 Thursday, October 18, 2012 Approved
PHP (Hypertext Preprocessor) 5.3.17 662 Thursday, September 13, 2012 Approved
PHP (Hypertext Preprocessor) 5.3.16 589 Thursday, August 16, 2012 Approved
PHP (Hypertext Preprocessor) 5.3.15 648 Friday, July 20, 2012 Approved
PHP (Hypertext Preprocessor) 5.3.14 590 Wednesday, June 27, 2012 Approved
PHP (Hypertext Preprocessor) 5.3.10 805 Monday, February 20, 2012 Approved
PHP (Hypertext Preprocessor) 5.3.9 706 Thursday, January 12, 2012 Approved
PHP (Hypertext Preprocessor) 5.3.6.2 730 Tuesday, August 23, 2011 Approved
PHP (Hypertext Preprocessor) 5.3.6.1 629 Tuesday, August 23, 2011 Approved
PHP (Hypertext Preprocessor) 5.3.6 962 Tuesday, August 23, 2011 Approved

This package has no dependencies.

Discussion for the PHP (Hypertext Preprocessor) Package

Ground Rules:

  • This discussion is only about PHP (Hypertext Preprocessor) and the PHP (Hypertext Preprocessor) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or PHP (Hypertext Preprocessor), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus