PHP 8.3.4 Released!

rrd_create

(PECL rrd >= 0.9.0)

rrd_create创建 rrd 数据库文件

说明

rrd_create(string $filename, array $options): bool

创建 rrd 数据库文件。

参数

filename

新创建的 rrd 文件名。

options

rrd 创建选项 - 字符串列表。全部列表项请参阅创建 rrd 的手册页。

返回值

成功时返回 true, 或者在失败时返回 false

add a note

User Contributed Notes 1 note

up
-11
daniel dot seif at castex dot de
12 years ago
Note, that in previous versions, the interface was

bool rrd_create ( string $filename , array $options , integer numberOfOptions )
To Top