The PHP Interpreter https://www.php.net
Find a file
Christoph M. Becker f698c62361
Fix bug 64823: ZTS GD fails to to find system TrueType font
First, the `$fontfile` parameter actually supports a semicolon
delimited list of fonts (as documented[1]); thus passing the full
string to `VCWD_REALPATH()` or `php_check_open_basedir()` makes no
sense; we could pass the individual parts, but …

Second, libgd uses an elaborate font detection.  There is a hard-
coded `DEFAULT_PATH` which can be overridden by the environment
variable `GDFONTPATH`.  Semantics are like the `PATH` environment
variable.  If `DEFAULT_PATH` was still exposed (it is no longer as of
libgd 2.1.0[2]), we could take that into account, but …

External libgd can be configured with font-config support, so font
aliases and even lookup patterns are supported.  There is no way to
cater to that upfront.

Thus, we no longer interfere with libgd's font lookup.  Checking the
realpath was already doubtful (we didn't even use the resolved path).
Lifting the open_basedir restriction is a bit more delicate, but the
manual still states that open_basedir would not apply, and more
relevant, not much harm can be done, because libgd only passes the
found font to `FT_New_Face()` which likely fails for any non font files
without any error which could reveal sensitive information.  And the
font file is never written.

It should be noted that this solves lookup of system fonts, does not
change the behavior for absolute font paths, but still does not resolve
issues with relative paths to font files in ZTS environments using
external libgd (our bundled libgd has a workaround for that).  This
particular issue cannot be solved, so users of ZTS builds still need to
add `realpath(.)` to the `GDFONTPATH` as documented in the manual (or
pass absolute paths as `$fontfile`).

[1] <https://www.php.net/imagettftext>
[2] <2a921c80fb>

Closes GH-17366.
2025-01-25 19:27:05 +01:00
.circleci Merge branch 'PHP-8.3' 2024-05-02 19:53:43 +02:00
.github Merge branch 'PHP-8.4' 2025-01-25 17:43:17 +01:00
benchmark Add a check for required extensions in benchmark.php (#14811) 2024-07-16 19:37:20 +02:00
build Add support for using final properties in stubs (#17306) 2025-01-06 07:56:13 +01:00
docs Improve php-src docs sphinx build, also on *nix (GH-16743) 2024-11-29 19:29:00 +01:00
docs-old Autotools: Normalize and quote all PHP_NEW_EXTENSION arguments (#15144) 2024-07-29 00:14:59 +02:00
ext Fix bug 64823: ZTS GD fails to to find system TrueType font 2025-01-25 19:27:05 +01:00
main Address more Clang warnings (GH-17506) 2025-01-21 20:05:29 +01:00
pear Update PEAR failed download installation banner (#14216) 2024-05-13 19:01:05 +02:00
sapi Resolve -Wincompatible-pointer-types warnings (GH-17456) 2025-01-13 10:54:13 +01:00
scripts Add dedicated zend_ast_op_array struct (#17391) 2025-01-08 11:26:35 +01:00
tests Merge branch 'PHP-8.4' 2024-12-13 02:06:14 +03:00
TSRM Merge branch 'PHP-8.4' 2025-01-25 18:59:26 +01:00
win32 Address more Clang warnings (GH-17506) 2025-01-21 20:05:29 +01:00
Zend Zend: Make Closure a proper subtype of callable (#15492) 2025-01-24 17:32:23 +00:00
.editorconfig Improve php-src docs sphinx build, also on *nix (GH-16743) 2024-11-29 19:29:00 +01:00
.gdbinit Merge branch 'PHP-8.2' into PHP-8.3 2024-01-23 12:55:47 +01:00
.gitattributes Inline GDB scripts in the PHP binary (#13600) 2024-04-16 15:10:01 +02:00
.gitignore Merge branch 'PHP-8.3' into PHP-8.4 2024-12-19 18:38:30 +01:00
buildconf Merge branch 'PHP-8.2' into PHP-8.3 2024-11-09 14:05:38 +01:00
buildconf.bat Fix #79146: cscript can fail to run on some systems 2020-01-21 11:53:11 +01:00
codecov.yml Implement CSS selectors 2024-06-29 13:00:26 -07:00
CODING_STANDARDS.md [skip ci] Bump required C standard to C11 2024-09-27 12:37:20 +02:00
configure.ac PHP-8.3 is now for PHP-8.3.17-dev 2024-12-31 08:46:21 -08:00
CONTRIBUTING.md Prepare for PHP 8.4 2024-09-25 00:03:39 +09:00
EXTENSIONS Merge branch 'PHP-8.3' into PHP-8.4 2024-10-22 20:14:57 +02:00
LICENSE Update year to 2024 2024-01-04 19:26:32 +01:00
NEWS Fix bug 64823: ZTS GD fails to to find system TrueType font 2025-01-25 19:27:05 +01:00
php.ini-development Remove incorrect information from INI (#17020) 2024-12-02 20:02:31 +01:00
php.ini-production Remove incorrect information from INI (#17020) 2024-12-02 20:02:31 +01:00
README.md Remove Travis artefacts (#15714) 2024-09-04 01:15:10 +02:00
README.REDIST.BINS hash: Add SHA-NI implementation of SHA-256 (#15152) 2024-08-08 22:19:33 +02:00
run-tests.php Shuffle tests for a single worker 2024-12-27 15:58:59 +01:00
SECURITY.md Move most of this to https://github.com/php/policies as per Policies RFC 2024-01-30 17:31:55 +00:00
UPGRADING Zend: Make Closure a proper subtype of callable (#15492) 2025-01-24 17:32:23 +00:00
UPGRADING.INTERNALS ext/json: Refactor php_json_encode_serializable_object() to call method directly 2025-01-13 13:46:25 +00:00

The PHP Interpreter

PHP is a popular general-purpose scripting language that is especially suited to web development. Fast, flexible and pragmatic, PHP powers everything from your blog to the most popular websites in the world. PHP is distributed under the PHP License v3.01.

Push Fuzzing Status

Documentation

The PHP manual is available at php.net/docs.

Installation

Prebuilt packages and binaries

Prebuilt packages and binaries can be used to get up and running fast with PHP.

For Windows, the PHP binaries can be obtained from windows.php.net. After extracting the archive the *.exe files are ready to use.

For other systems, see the installation chapter.

Building PHP source code

For Windows, see Build your own PHP on Windows.

For a minimal PHP build from Git, you will need autoconf, bison, and re2c. For a default build, you will additionally need libxml2 and libsqlite3.

On Ubuntu, you can install these using:

sudo apt install -y pkg-config build-essential autoconf bison re2c \
                    libxml2-dev libsqlite3-dev

On Fedora, you can install these using:

sudo dnf install re2c bison autoconf make libtool ccache libxml2-devel sqlite-devel

Generate configure:

./buildconf

Configure your build. --enable-debug is recommended for development, see ./configure --help for a full list of options.

# For development
./configure --enable-debug
# For production
./configure

Build PHP. To speed up the build, specify the maximum number of jobs using -j:

make -j4

The number of jobs should usually match the number of available cores, which can be determined using nproc.

Testing PHP source code

PHP ships with an extensive test suite, the command make test is used after successful compilation of the sources to run this test suite.

It is possible to run tests using multiple cores by setting -jN in TEST_PHP_ARGS:

make TEST_PHP_ARGS=-j4 test

Shall run make test with a maximum of 4 concurrent jobs: Generally the maximum number of jobs should not exceed the number of cores available.

The qa.php.net site provides more detailed info about testing and quality assurance.

Installing PHP built from source

After a successful build (and test), PHP may be installed with:

make install

Depending on your permissions and prefix, make install may need super user permissions.

PHP extensions

Extensions provide additional functionality on top of PHP. PHP consists of many essential bundled extensions. Additional extensions can be found in the PHP Extension Community Library - PECL.

Contributing

The PHP source code is located in the Git repository at github.com/php/php-src. Contributions are most welcome by forking the repository and sending a pull request.

Discussions are done on GitHub, but depending on the topic can also be relayed to the official PHP developer mailing list internals@lists.php.net.

New features require an RFC and must be accepted by the developers. See Request for comments - RFC and Voting on PHP features for more information on the process.

Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in the commit message using GH-NNNNNN. Use #NNNNNN for tickets in the old bugs.php.net bug tracker.

Fix GH-7815: php_uname doesn't recognise latest Windows versions
Fix #55371: get_magic_quotes_gpc() throws deprecation warning

See Git workflow for details on how pull requests are merged.

Guidelines for contributors

See further documents in the repository for more information on how to contribute:

Credits

For the list of people who've put work into PHP, please see the PHP credits page.