sqlite_017.phpt
来自「PHP v6.0 For Linux 运行环境:Win9X/ WinME/ Wi」· PHPT 代码 · 共 34 行
PHPT
34 行
--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 + =
减小字号Ctrl + -
显示快捷键?