24 lines
517 B
PHP
24 lines
517 B
PHP
--TEST--
|
|
Bug #80521 (Parameters with underscores no longer recognized)
|
|
--SKIPIF--
|
|
<?php require('skipif.inc'); ?>
|
|
--ENV--
|
|
LSAN_OPTIONS=detect_leaks=0
|
|
--FILE--
|
|
<?php
|
|
require 'testdb.inc';
|
|
|
|
$dbh->exec("CREATE TABLE bug80521 (foo INTEGER)");
|
|
var_dump($dbh->prepare("SELECT foo FROM bug80521 WHERE foo = :foo_bar"));
|
|
?>
|
|
--EXPECTF--
|
|
object(PDOStatement)#%d (1) {
|
|
["queryString"]=>
|
|
string(45) "SELECT foo FROM bug80521 WHERE foo = :foo_bar"
|
|
}
|
|
--CLEAN--
|
|
<?php
|
|
require 'testdb.inc';
|
|
$dbh->exec("DROP TABLE bug80521");
|
|
?>
|