Hypertext Preprocessor is a general-purpose programming language!

PHP for Mac

PHP for Mac

  -  20.79 MB  -  Open Source
PHP for Mac is a popular general-purpose scripting language that is especially suited to web development. Fast, flexible and pragmatic, PHP for macOS powers everything from your blog to the most popular websites in the world.

PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.

Instead of lots of commands to output HTML (as seen in C or Perl), pages contain HTML with embedded code that does "something" (in this case, output "Hi, I'm a PHP script!"). The code is enclosed in special start and end processing instructions that allow you to jump into and out of "PHP mode."

What distinguishes PHP for macOS from something like client-side JavaScript is that the code is executed on the server, generating HTML which is then sent to the client.

The client would receive the results of running that script, but would not know what the underlying code was. You can even configure your web server to process all your HTML files with PHP, and then there's really no way that users can tell what you have up your sleeve.

The best things in using PHP are that it is extremely simple for a newcomer, but offers many advanced features for a professional programmer. Don't be afraid reading the long list of PHP's features.

You can jump in, in a short time, and start writing simple scripts in a few hours.

How to Use

Install PHP via Homebrew with brew install php

Verify installation using php -v

Configure Apache or Nginx to use PHP

Test with a phpinfo() script in your web server

Use Composer to manage PHP dependencies

Write and run PHP scripts in Terminal or browser

Edit scripts using any code editor like VS Code

Update PHP using brew upgrade php

Use php -S localhost:8000 for local testing

System Requirements
  • macOS 10.15 (Catalina) or later
  • At least 4 GB RAM (8 GB recommended)
  • Homebrew package manager
  • Command Line Tools for Xcode
  • Internet connection for installation
PROS
  • Easy installation with Homebrew
  • Native macOS support for Apache
  • Strong community and documentation
  • Compatible with popular IDEs
  • Great for local web development
CONS
  • Older macOS may lack PHP support
  • Configuration can be complex
  • Built-in PHP deprecated in new macOS
  • Performance not optimized by default
  • Compatibility issues with some extensions
Also Available: Download PHP for Windows

Why is this app published on FileHorse? (More info)

What's new in this version:

Calendar:
- Fixed jewishtojd overflow on year argument

Core:
- Fixed bug GH-18833 (Use after free with weakmaps dependent on destruction order)
- Fix OSS-Fuzz #427814456
- Fix OSS-Fuzz #428983568 and #428760800
- Fixed bug GH-17204 -Wuseless-escape warnings emitted by re2c

Curl:
- Fix memory leaks when returning refcounted value from curl callback
- Remove incorrect string release

LDAP:
- Fixed GH-18902 ldap_exop/ldap_exop_sync assert triggered on empty request OID

MbString:
- Fixed bug GH-18901 (integer overflow mb_split)

OCI8:
- Fixed bug GH-18873 (OCI_RETURN_LOBS flag causes oci8 to leak memory)

Opcache:
- Fixed bug GH-18639 (Internal class aliases can break preloading + JIT)
- Fixed bug GH-14082 (Segmentation fault on unknown address 0x600000000018 in ext/opcache/jit/zend_jit.c)

OpenSSL:
- Fixed bug #80770 (It is not possible to get client peer certificate with stream_socket_server)

PCNTL:
- Fixed bug GH-18958 (Fatal error during shutdown after pcntl_rfork() or pcntl_forkx() with zend-max-execution-timers)

Phar:
- Fix stream double free in phar
- Fix phar crash and file corruption with SplFileObject

SOAP:
- Fixed bug GH-18990, bug #81029, bug #47314 (SOAP HTTP socket not closing on object destruction)
- Fix memory leak when URL parsing fails in redirect

SPL:
- Fixed bug GH-19094 (Attaching class with no Iterator implementation to MultipleIterator causes crash)

Standard:
- Fix misleading errors in printf()
- Fix RCN violations in array functions
- Fixed GH-18976 pack() overflow with h/H format and INT_MAX repeater value

Streams:
- Fixed GH-13264 (fgets() and stream_get_line() do not return false on filter fatal error)

Zip:
- Fix leak when path is too long in ZipArchive:extractTo()