📄 sqlite_023.phpt
字号:
--TEST--sqlite: sqlite_[has_]prev--INI--sqlite.assoc_case=0--SKIPIF--<?php # vim:ft=phpif (!extension_loaded("sqlite")) print "skip"; ?>--FILE--<?phpinclude "blankdb.inc";$data = array( "one", "two", "three" );sqlite_query("CREATE TABLE strings(a)", $db);foreach ($data as $str) { sqlite_query("INSERT INTO strings VALUES('$str')", $db);}$r = sqlite_query("SELECT a FROM strings", $db, SQLITE_NUM);echo "====TRAVERSE====\n";for(sqlite_rewind($r); sqlite_valid($r); sqlite_next($r)) { var_dump(sqlite_current($r));}echo "====REVERSE====\n";do { sqlite_prev($r); var_dump(sqlite_current($r));} while(sqlite_has_prev($r));echo "====UNBUFFERED====\n";$r = sqlite_unbuffered_query("SELECT a FROM strings", $db, SQLITE_NUM);echo "====TRAVERSE====\n";for(sqlite_rewind($r); sqlite_valid($r); sqlite_next($r)) { var_dump(sqlite_current($r));}echo "====REVERSE====\n";do { sqlite_prev($r); var_dump(sqlite_current($r));} while(sqlite_has_prev($r));sqlite_close($db);echo "====DONE!====\n";?>--EXPECTF--====TRAVERSE====array(1) { [0]=> string(3) "one"}array(1) { [0]=> string(3) "two"}array(1) { [0]=> string(5) "three"}====REVERSE====array(1) { [0]=> string(5) "three"}array(1) { [0]=> string(3) "two"}array(1) { [0]=> string(3) "one"}====UNBUFFERED========TRAVERSE====Warning: sqlite_rewind(): Cannot rewind an unbuffered result set in %ssqlite_023.php on line %darray(1) { [0]=> string(3) "one"}array(1) { [0]=> string(3) "two"}array(1) { [0]=> string(5) "three"}====REVERSE====Warning: sqlite_prev(): you cannot use sqlite_prev on unbuffered querys in %ssqlite_023.php on line %dbool(false)Warning: sqlite_has_prev(): you cannot use sqlite_has_prev on unbuffered querys in %ssqlite_023.php on line %d====DONE!====--UEXPECTF--====TRAVERSE====array(1) { [0]=> unicode(3) "one"}array(1) { [0]=> unicode(3) "two"}array(1) { [0]=> unicode(5) "three"}====REVERSE====array(1) { [0]=> unicode(5) "three"}array(1) { [0]=> unicode(3) "two"}array(1) { [0]=> unicode(3) "one"}====UNBUFFERED========TRAVERSE====Warning: sqlite_rewind(): Cannot rewind an unbuffered result set in %ssqlite_023.php on line %darray(1) { [0]=> unicode(3) "one"}array(1) { [0]=> unicode(3) "two"}array(1) { [0]=> unicode(5) "three"}====REVERSE====Warning: sqlite_prev(): you cannot use sqlite_prev on unbuffered querys in %ssqlite_023.php on line %dbool(false)Warning: sqlite_has_prev(): you cannot use sqlite_has_prev on unbuffered querys in %ssqlite_023.php on line %d====DONE!====
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -