Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- PDO Common: Bug #73234 (Emulated statements let value dictate parameter type) --E..
Decoded Output download
--TEST--
PDO Common: Bug #73234 (Emulated statements let value dictate parameter type)
--EXTENSIONS--
pdo
--SKIPIF--
<?php
$dir = getenv('REDIR_TEST_DIR');
if (false == $dir) die('skip no driver');
require_once $dir . 'pdo_test.inc';
PDOTest::skip();
$db = PDOTest::factory();
if ($db->getAttribute(PDO::ATTR_DRIVER_NAME) == 'oci') {
die("xfail PDO::PARAM_NULL is not honored by OCI driver, related with bug #81586");
}
?>
--FILE--
<?php
if (getenv('REDIR_TEST_DIR') === false) putenv('REDIR_TEST_DIR='.__DIR__ . '/../../pdo/tests/');
require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
$db = PDOTest::factory();
$db->setAttribute(PDO::ATTR_EMULATE_PREPARES, true);
switch ($db->getAttribute(PDO::ATTR_DRIVER_NAME)) {
case 'dblib':
$sql = 'CREATE TABLE test(id INT NULL)';
break;
default:
$sql = 'CREATE TABLE test(id INT)';
break;
}
$db->exec($sql);
$stmt = $db->prepare('INSERT INTO test VALUES(:value)');
$stmt->bindValue(':value', 0, PDO::PARAM_NULL);
$stmt->execute();
$stmt->bindValue(':value', null, PDO::PARAM_NULL);
$stmt->execute();
$stmt = $db->query('SELECT * FROM test');
var_dump($stmt->fetchAll(PDO::FETCH_ASSOC));
?>
--EXPECT--
array(2) {
[0]=>
array(1) {
["id"]=>
NULL
}
[1]=>
array(1) {
["id"]=>
NULL
}
}
Did this file decode correctly?
Original Code
--TEST--
PDO Common: Bug #73234 (Emulated statements let value dictate parameter type)
--EXTENSIONS--
pdo
--SKIPIF--
<?php
$dir = getenv('REDIR_TEST_DIR');
if (false == $dir) die('skip no driver');
require_once $dir . 'pdo_test.inc';
PDOTest::skip();
$db = PDOTest::factory();
if ($db->getAttribute(PDO::ATTR_DRIVER_NAME) == 'oci') {
die("xfail PDO::PARAM_NULL is not honored by OCI driver, related with bug #81586");
}
?>
--FILE--
<?php
if (getenv('REDIR_TEST_DIR') === false) putenv('REDIR_TEST_DIR='.__DIR__ . '/../../pdo/tests/');
require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
$db = PDOTest::factory();
$db->setAttribute(PDO::ATTR_EMULATE_PREPARES, true);
switch ($db->getAttribute(PDO::ATTR_DRIVER_NAME)) {
case 'dblib':
$sql = 'CREATE TABLE test(id INT NULL)';
break;
default:
$sql = 'CREATE TABLE test(id INT)';
break;
}
$db->exec($sql);
$stmt = $db->prepare('INSERT INTO test VALUES(:value)');
$stmt->bindValue(':value', 0, PDO::PARAM_NULL);
$stmt->execute();
$stmt->bindValue(':value', null, PDO::PARAM_NULL);
$stmt->execute();
$stmt = $db->query('SELECT * FROM test');
var_dump($stmt->fetchAll(PDO::FETCH_ASSOC));
?>
--EXPECT--
array(2) {
[0]=>
array(1) {
["id"]=>
NULL
}
[1]=>
array(1) {
["id"]=>
NULL
}
}
Function Calls
getenv | 1 |
Stats
MD5 | 9655ceb911e01771512b8f25e063f925 |
Eval Count | 0 |
Decode Time | 95 ms |