Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 59ca0a6abfb4f2a7e9c7203f154aeb8f > files > 31

php-tdb-1.0.0-9mdv2010.0.i586.rpm

--TEST--
tdb_replace() basic tests
--FILE--
<?php

$tdb = tdb_open("", 0, TDB_INTERNAL);

var_dump(tdb_replace());
var_dump(tdb_replace($tdb, "", "", ""));

var_dump(tdb_replace($tdb, "", ""));
var_dump(tdb_replace($tdb, "key", "value"));

var_dump(tdb_fetch($tdb, ""));
var_dump(tdb_fetch($tdb, "key"));

echo "Done\n";
?>
--EXPECTF--	
Warning: tdb_replace() expects exactly 3 parameters, 0 given in %s on line %d
NULL

Warning: tdb_replace() expects exactly 3 parameters, 4 given in %s on line %d
NULL
bool(true)
bool(true)
string(0) ""
string(5) "value"
Done