云应用网站更新PHP相关配置
POST
/product/rca/website/{id}/config/php最后修改时间: 6 个月前
请求参数
Path 参数
id
string
必需
Body 参数application/json
default_socket_timeout
integer
可选
默认值:
60
disable_functions
array[string]
禁用函数
display_errors
boolean
可选
默认值:
false
error_reporting
string
可选
默认值:
E_ALL & ~E_DEPRECATED & ~E_STRICT
file_uploads
boolean
可选
默认值:
true
max_execution_time
integer
可选
默认值:
30
max_file_uploads
integer
可选
默认值:
20
max_input_time
integer
可选
默认值:
60
memory_limit
integer
可选
默认值:
256
post_max_size
integer
可选
默认值:
100
short_open_tag
boolean
可选
upload_limit
integer
上传限制
默认值:
50
upload_max_filesize
integer
可选
默认值:
50
示例
{
"default_socket_timeout": 60,
"disable_functions": [
"string"
],
"display_errors": false,
"error_reporting": "E_ALL & ~E_DEPRECATED & ~E_STRICT",
"file_uploads": true,
"max_execution_time": 30,
"max_file_uploads": 20,
"max_input_time": 60,
"memory_limit": 256,
"post_max_size": 100,
"short_open_tag": true,
"upload_limit": 50,
"upload_max_filesize": 50
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object {0}
示例
{}
最后修改时间: 6 个月前