PHP 7.0.6 Released

rrd_create

(PECL rrd >= 0.9.0)

rrd_createCreates rrd database file

Description

bool rrd_create ( string $filename , array $options )

Creates the rdd database file.

Parameters

filename

Filename for newly created rrd file.

options

Options for rrd create - list of strings. See man page of rrd create for whole list of options.

Return Values

Returns TRUE on success or FALSE on failure.

User Contributed Notes

daniel dot seif at castex dot de
5 years ago
Note, that in previous versions, the interface was

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