mirror of
https://github.com/php-win-ext/pecl-processing-rrd.git
synced 2026-03-24 00:52:13 +01:00
git-svn-id: http://svn.php.net/repository/pecl/rrd/trunk@332619 c90b9560-bf6c-de11-be94-00142212c4b1
17 lines
236 B
PHP
17 lines
236 B
PHP
--TEST--
|
|
rrdc_disconnect test
|
|
--SKIPIF--
|
|
<?php
|
|
include('skipif.inc');
|
|
if (!function_exists("rrdc_disconnect")) {
|
|
die("skip rrdc_disconnect only in rrdtool >= 1.4");
|
|
}
|
|
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(rrdc_disconnect());
|
|
?>
|
|
--EXPECTF--
|
|
NULL
|