File: rrd_011.phpt

package info (click to toggle)
php-rrd 2.0.3%2B1.1.3-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 496 kB
  • sloc: ansic: 2,447; xml: 665; makefile: 58; php: 3
file content (23 lines) | stat: -rw-r--r-- 460 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
rrd_first test
--SKIPIF--
<?php
include('skipif.inc');
include('data/definition.inc');
if (!file_exists($data_updatedDb)) {
	die("skip $data_updatedDb doesnt' exist");
}
?>
--FILE--
<?php
include('data/definition.inc');
var_dump(rrd_first($data_updatedDb));
var_dump(rrd_first($data_updatedDb, 1));
var_dump(rrd_first($data_updatedDb, -1));
var_dump(rrd_first($data_updatedDb, 2));
?>
--EXPECTF--
int(920802000)
int(920791800)
bool(false)
bool(false)