????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.55 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/dba/tests/ |
Upload File : |
--TEST--
DBA CDB handler test (read only)
--SKIPIF--
<?php
$handler = 'cdb_make';
require_once dirname(__FILE__) .'/skipif.inc';
?>
--FILE--
<?php
echo "database handler: cdb\n";
$handler = 'cdb';
$db_file = dirname(__FILE__).'/test.cdb';
if (($db_file=dba_open($db_file, "r", $handler))!==FALSE) {
// read key sequence
$a = dba_firstkey($db_file);
$count= 0;
$keys = $a;
while($a) {
$a = dba_nextkey($db_file);
$keys .= $a;
$count++;
}
// display number of entries and key existence
echo $count;
for ($i=1; $i<8; $i++) {
echo dba_exists($i, $db_file) ? "Y" : "N";
}
echo "\n=";
echo dba_fetch(1, $db_file);
echo dba_fetch(2, $db_file);
echo dba_fetch(3, $db_file);
echo dba_fetch(4, $db_file);
echo "\n#";
echo dba_fetch(1, $db_file);
echo dba_fetch(1, $db_file);
echo dba_fetch(2, $db_file);
echo dba_fetch(2, $db_file);
echo "\n?".$keys;
// with skip = 0 dba_fetch must fetch the first result
echo "\n#";
$skip = array();
for ($i=0; $i < strlen($keys); $i++) {
$key = substr($keys, $i, 1);
$skip[$key] = 0;
echo dba_fetch($key, $db_file);
}
echo "\n=";
for ($i=0; $i < strlen($keys); $i++) {
$key = substr($keys, $i, 1);
echo dba_fetch($key, $skip[$key], $db_file);
$skip[$key]++;
}
dba_close($db_file);
} else {
echo "Error creating database\n";
}
?>
--EXPECT--
database handler: cdb
7YYYYNNN
=1234
#1122
?1212314
#1212314
=1231324