1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 22:41:20 +02:00
Files
archived-php-src/ext/oci8/tests/null_byte_3.phpt
Nikita Popov 7485978339 Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

40 lines
792 B
PHP

--TEST--
Null bytes in SQL statements
--EXTENSIONS--
oci8
--INI--
display_errors = On
error_reporting = E_WARNING
--FILE--
<?php
require(__DIR__.'/connect.inc');
// Run Test
echo "Test 1: Invalid use of a null byte\n";
$s = oci_parse($c, "select * from du\0al");
oci_execute($s);
echo "Test 2: Using a null byte in a bind variable value causing WHERE clause to fail\n";
$s = oci_parse($c, "select * from dual where :bv = 'abc'");
$bv = 'abc\0abc';
oci_bind_by_name($s, ":bv", $bv);
oci_execute($s);
oci_fetch_all($s, $res);
var_dump($res);
?>
--EXPECTF--
Test 1: Invalid use of a null byte
Warning: oci_execute(): ORA-00942: %s in %snull_byte_3.php on line %d
Test 2: Using a null byte in a bind variable value causing WHERE clause to fail
array(1) {
["DUMMY"]=>
array(0) {
}
}