作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我将以“display_errors”为例:
ini_set('display_errors', 1);// int
ini_set('display_errors', '1');// string
ini_set('display_errors', 'on');// string
ini_set('display_errors', true);// boolean
我知道以上所有方法都一样。我只是想知道什么是最合适的,如果有人知道的话。
最佳答案
在 php.net 上语法如下所示:
string ini_set(string $varname, string $newvalue)
所有参数都应该是一个字符串
。在 php.ini 文件中,所有 bool 值都显示为 On
或 Off
。以下方案应该是最合适的方案:
ini_set('display_errors', 'On');
ini_set('display_errors', 'Off');
在配置文件的文档中,您可以找到以下部分:
Boolean values can be set to either:
true, on, yes or false, off, no, none
http://php.net/manual/en/configuration.file.php
在 ini_get
上,返回值是一个字符串。文档说:
A boolean ini value of off will be returned as an empty string or "0" while a boolean ini value of on will be returned as "1". The function can also return the literal string of INI value.
http://php.net/manual/en/function.ini-get.php
ini_get
的返回值和ini_set
的值必须是字符串!
关于php - 使用 ini_set() 时新值的正确值类型是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33493277/
我是一名优秀的程序员,十分优秀!