Tempatkan file php.ini di direktori dasar aplikasi tempat
file app.yaml berada. Kode ini dimuat saat penafsir PHP
diinisialisasi, sebelum menjalankan kode aplikasi.
File ini mengikuti sintaksis yang sama dengan file .ini lainnya.
Contoh sederhana mungkin terlihat seperti ini:
; This is a simple php.ini file on App Engine; It enables output buffering for all requests by overriding the; default setting of the PHP interpreter.output_buffering = "On"
[[["Mudah dipahami","easyToUnderstand","thumb-up"],["Memecahkan masalah saya","solvedMyProblem","thumb-up"],["Lainnya","otherUp","thumb-up"]],[["Sulit dipahami","hardToUnderstand","thumb-down"],["Informasi atau kode contoh salah","incorrectInformationOrSampleCode","thumb-down"],["Informasi/contoh yang saya butuhkan tidak ada","missingTheInformationSamplesINeed","thumb-down"],["Masalah terjemahan","translationIssue","thumb-down"],["Lainnya","otherDown","thumb-down"]],["Terakhir diperbarui pada 2025-03-07 UTC."],[[["You can customize PHP interpreter behavior in your App Engine application by including a `php.ini` file."],["Place the `php.ini` file in your application's base directory alongside the `app.yaml` file for it to be loaded."],["The `php.ini` file uses the standard `.ini` file syntax to override PHP directives."],["You can override PHP directives with changeable mode values of `PHP_INI_SYSTEM`, `PHP_INI_ALL`, or `PHP_INI_PERDIR`."],["The extension directive allows for the enabling of dynamically loadable extensions."]]],[]]