⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sqlite_017.phpt

📁 PHP v6.0 For Linux 运行环境:Win9X/ WinME/ WinNT/ Win2K/ WinXP
💻 PHPT
字号:
--TEST--sqlite: UDF binary handling functions--SKIPIF--<?php # vim:ft=phpif (!extension_loaded("sqlite")) print "skip"; ?>--FILE--<?php $data = array(	"hello there",	"this has a \x00 char in the middle",	"\x01 this has an 0x01 at the start",	"this has \x01 in the middle"	);foreach ($data as $item) {	$coded = sqlite_udf_encode_binary($item);	echo bin2hex($coded) . "\n";	$decoded = sqlite_udf_decode_binary($coded);	if ($item != $decoded) {		echo "FAIL! $item decoded is $decoded\n";	}}echo "OK!\n";?>--EXPECT--68656c6c6f2074686572650101736768721f6760721f601fff1f626760711f686d1f7367641f6c6863636b640102ff1e726667711e665f711e5f6c1e2e762e2f1e5f721e7266631e71725f70727468697320686173200120696e20746865206d6964646c65OK!

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -