This file controls many aspects of PHP. In order for PHP to read this file, it must be named
;
´php.ini´. PHP will search for the file in these places: the current working directory; the environment variable PHPRC
;
The specified path; the path specified when compiling.
; Under Windows, the path when compiling is the Windows installation directory.
;
In command line mode, the search path of php.ini can be replaced with the -c parameter.
;
The syntax of this file is very simple. Whitespace characters and lines starting with a semicolon ´;´ are simply ignored (as you might
; guess).
Section titles (eg: [Foo]) are also simply ignored, even though they may
; have some meaning in the future.
;
; instructions are specified using the following syntax:
; directive = value
; directive = value
; directive is *case sensitive* -
foo=bar is different from FOO = bar.
;
; The value can be a string, a number, a PHP constant (such as: E_ALL or
M_PI),
in INI constant; one (On, Off, True, False, Yes, No and None)
, or an expression
; (such as: E_ALL & ~E_NOTICE), or a string enclosed in quotes ("foo").
;
;
INI file expressions are restricted to bitwise operators and parentheses.
; | bitwise OR
; & bitwise AND
;
~ bitwise NOT
; ! boolean NOT
;
; Boolean flag available 1, On, True or Yes
These values are turned on.
; They can be turned off using the values 0, Off, False or No.
;
;
An empty string can be represented by writing nothing after the equal sign, or using the None keyword:
;
; foo = ; sets foo to the empty string
;
foo = none ; Set foo to an empty string
; foo = "none" ;
Set foo to string´none´
;
;
If you use constants in value settings, and these constants belong to dynamically loaded extension libraries (not PHP extensions, that is
; Zend
extensions), you can only use these constants *after* the lines that call in these extensions.
;
; All in php.ini-dist
The value set in the file is the same as the built-in default value (that is, if php.ini
; is not used or you delete these lines, the default value is the same).
;;;;;;;;;;;;;;;;;;;;;;
; Language options;
;;;;;;;;;;;;;;;;;;;;;
engine = On
; Enable PHP
The scripting language engine (PHP scripting language engine) is available under Apache.
short_open_tag =
On
; allows the flag (this simple representation). Otherwise only the tags will be recognized.
asp_tags
= Off
; Allow ASP-style <% %> tags
precision = 14
;
Number of significant digits when displaying floating point type numbers
y2k_compliance = Off
; Whether to turn on 2000 adaptation
(May cause problems in non-Y2K compliant browsers)
output_buffering = Off
;
Output caching allows you to send header (including cookies) lines
even after outputting the body content;
The cost is that the output layer slows down a bit. You can use Output Cache to turn on output caching at runtime,
; or set the directive to On here to turn on output caching for all files.
implicit_flush
= Off
; Force flush (refresh) to tell PHP to tell the output layer to automatically refresh its own data after each output block.
; This is equivalent to adding a
The flush() function is called after each HTML block and print() or echo() call.
;
Turning on this setting can cause serious runtime conflicts, and it is recommended to turn it on only during debugging.
allow_call_time_pass_reference
= On
; Whether to force parameters to be passed by reference when calling the function. This method was protested
; and may no longer be supported in future versions of PHP/Zend.
;
The encouraged way to specify which parameters are passed by reference is in the function declaration.
;
You are encouraged to try turning this option off and confirm that your scripts still work properly in future versions of the language
;
They still work. (You will get a warning every time you use this feature, and arguments will be passed by value rather than by reference
;).
; Safe Mode
Safe Mode
safe_mode = Off
safe_mode_exec_dir =
safe_mode_allowed_env_vars
= PHP_
; ? Setting certain environment variables
; ? may be a
potential security breach.
; The indication contains a comma-separated list of prefixes. In safe mode, users can only replace
;
The value of an environment variable starting with the prefix listed here.
; By default, users will only be able to set environment variables starting with PHP_ (eg: PHP_FOO=BAR).
;
Note: If this directive is empty, PHP will let the user change any environment variables!
safe_mode_protected_env_vars =
LD_LIBRARY_PATH
; This directive contains a comma-separated list of environment variables that the end user will not be able to change using putenv ().
;
These variables are protected even when safe_mode_allowed_env_vars is set to allowed.
disable_functions
=
; This directive allows you to disable specific functions for security reasons.
; It accepts a comma separated list of function names.
; This directive is *not* supported
Whether safe mode is turned on or not.
; Color of syntax highlighting mode.
; As long as it can be Whatever is accepted will work.
highlight.string = #DD0000
highlight.comment
= #FF8000
highlight.keyword = #007700
highlight.bg = #FFFFFF
highlight.default
= #0000BB
highlight.html = #000000
; Misc Miscellaneous
expose_php
= Off
; Determines whether PHP should indicate the fact that it is installed on the server (for example: by adding it to the -PHP- signal sent to the Web service
;).
;
(My personal opinion is to turn this off when any power-by header appears.)
; It will not pose a security threat,
But it makes it possible to check whether PHP is installed on your server.
;;;;;;;;;;;;;;;;;;;;;;
; Resource
Limits ;
;;;;;;;;;;;;;;;;;;;;
max_execution_time = 30 ;
The maximum execution time of each script, in seconds
memory_limit = 8388608; The maximum total amount of memory that can be used by a script (here is 8MB)
;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging;
; Error handling and logging;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;
; Error reporting is bitwise. Or add up the numbers to get the desired error reporting level.
; E_ALL - all errors and warnings
;
E_ERROR - fatal runtime error
; E_WARNING - runtime warning (non-fatal error)
; E_PARSE - compile-time parsing error
; E_NOTICE - runtime reminder (these are often caused by bugs in your code,
; may also be caused by intentional behavior. (e.g. based on uninitialized changes)
The fact that the variable is automatically initialized to an
; empty string while using an uninitialized variable)
; E_CORE_ERROR -
Fatal error that occurs during the initialization process of PHP startup
; E_CORE_WARNING - warning (non-fatal error) that occurs during the initialization process of PHP startup
;
E_COMPILE_ERROR - fatal compile-time error
; E_COMPILE_WARNING - compile-time warning (non-fatal error)
;
E_USER_ERROR - user-generated error message
; E_USER_WARNING - user-generated warning message
;
E_USER_NOTICE - User generated reminder message
; Example:
; error_reporting = E_ALL &
~E_NOTICE ; Show all errors except reminders
; error_reporting =
E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR ; Show errors only
error_reporting = E_ALL
& ~E_NOTICE ; Display all errors except reminders
display_errors = On ;
Display error messages (as part of the output)
; On the final published web site, it is strongly recommended that you turn this feature off and use the
; error log instead (see below).
; It is possible to continue to enable display_errors in the final published website
;
Expose some security-related information, such as file paths on your web service,
; your database layout or other information.
log_errors =
Off ; Record errors in the log file (server-specified log, stderr standard error output, or error_log (below))
;
As noted above, it is strongly recommended that you log errors
; instead of direct error output on the final published website.
track_errors =
Off ; Save the latest error/warning message in variable $php_errormsg (boolean)
;error_prepend_string
= "<font color=ff0000>" ; The string output before the error message
;error_append_string =
"</font>" ; The string output after the error message
;error_log = filename ; Record the error log in the specified file
;error_log
= syslog; Record error log in system log syslog (event log under NT, invalid under Windows 95)
warn_plus_overloading
= Off ; Warn when using ' ' with string
;;;;;;;;;;;;;;;;;;;
; Data Handling
;
;;;;;;;;;;;;;;;;;;
variables_order = "EGPCS" ; This directive describes the PHP record
;
GET, POST, Cookie, Environment and Built-in in the order of these variables.
; (with G, P, C, E
& S stands for, usually quoted in EGPCS or GPC terms).
; Records from left to right, with new values replacing old ones.
register_globals
= On ; Whether to register these EGPCS variables as global variables.
; You may want to turn this off if you don't want user data to be cluttered globally.
;
This makes more sense in conjunction with track_vars — that way you can access all GPC variables via the
; $HTTP_*_VARS[] array.
register_argc_argv
= On; This instruction tells PHP whether to declare argv and argc variables
; (Note: here argv is an array and argc is the number of variables)
;
(Contains data passed using the GET method).
; If you don't want to use these variables, you should turn them off to improve performance.
track_vars = On ;
Make the $HTTP_*_VARS[] array valid, where * is replaced with
; ENV, POST, GET, COOKIE or SERVER when using
gpc_order
= "GPC" ; This directive was objected to. Use variables_order instead.
; Magic quotes
magic_quotes_gpc
= On ; Use magic quotes in the input GET/POST/Cookie data
; (The original text is like this, haha, so-called magic quotes
It should refer to using escape characters to add quotation control characters, such as ´....)
magic_quotes_runtime

php.ini关闭缓存的方法:1、找到并打开php.ini配置文件;2、找到“opcache.enable”和“opcache.enable_cli”选项,将其修改为“opcache.enable=0”和“opcache.enable_cli=0”;3、保存修改后的文件即可。

Vue.nextTick函数用法详解及在异步更新中的应用在Vue开发中,经常会遇到需要进行异步更新数据的情况,比如在修改DOM后需要立即更新数据或者在数据更新后需要立即进行相关操作。而Vue提供的.nextTick函数就是为了解决这类问题而出现的。本文就会详细介绍Vue.nextTick函数的用法,并结合代码示例来说明它在异步更新中的应用。一、Vue.nex

在Web应用程序中,缓存通常是用来优化性能的重要手段。Django作为一款著名的Web框架,自然也提供了完善的缓存机制来帮助开发者进一步提高应用程序的性能。本文将对Django框架中的缓存机制进行详解,包括缓存的使用场景、建议的缓存策略、缓存的实现方式和使用方法等方面。希望对Django开发者或对缓存机制感兴趣的读者有所帮助。一、缓存的使用场景缓存的使用场景

PHP-FPM是一种常用的PHP进程管理器,用于提供更好的PHP性能和稳定性。然而,在高负载环境下,PHP-FPM的默认配置可能无法满足需求,因此我们需要对其进行调优。本文将详细介绍PHP-FPM的调优方法,并给出一些代码示例。一、增加进程数默认情况下,PHP-FPM只启动少量的进程来处理请求。在高负载环境下,我们可以通过增加进程数来提高PHP-FPM的并发

在PHP开发中,有时我们需要判断某个函数是否可用,这时我们便可以使用function_exists()函数。本文将详细介绍function_exists()函数的用法。一、什么是function_exists()函数?function_exists()函数是PHP自带的一个内置函数,用于判断某个函数是否被定义。该函数返回一个布尔值,如果函数存在返回True,

PHPstrpos()函数用法详解在PHP编程中,字符串处理是非常重要的一部分。PHP通过提供一些内置函数来实现字符串处理。其中,strpos()函数就是PHP中最常用的一个字符串函数之一。该函数的目的是在一个指定的字符串中搜索另一个指定字符串的位置,如果包含则返回这个位置,否则返回false。本文将通过详细分析PHPstrpos()函数的用法,助你更好

Gin框架是目前非常流行的Go语言Web框架之一。作为一个轻量级的框架,Gin提供了丰富的功能和灵活的架构,使得它在Web开发领域中备受欢迎。其中一个特别重要的功能是模板渲染。在本文中,我们将介绍Gin框架的模板渲染功能,并深入了解它的实现原理。一、Gin框架的模板渲染功能Gin框架使用了多种模板渲染引擎来构建Web应用程序。目前,它支持以下几种模板引擎:

PHP.ini是一个PHP配置文件,它被用于控制PHP在服务器上的表现。此文件被用于设置一些变量的值,以便在运行时控制PHP。这篇文章将会向您展示如何修改PHP.ini配置文件的方式,以便控制PHP在您的服务器上的表现。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 Linux new version
SublimeText3 Linux latest version

Dreamweaver Mac version
Visual web development tools
