mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
40c24a65c4
improve infrastructure for LOB support.
30 lines
783 B
PHP
30 lines
783 B
PHP
--TEST--
|
|
PDO Common: PECL Bug #5772 PDO::FETCH_FUNC breaks on mixed case func name
|
|
--SKIPIF--
|
|
<?php # vim:ft=php:
|
|
if (!extension_loaded('pdo')) die('skip');
|
|
$dir = getenv('REDIR_TEST_DIR');
|
|
if (false == $dir) die('skip no driver');
|
|
require_once $dir . 'pdo_test.inc';
|
|
PDOTest::skip();
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
if (getenv('REDIR_TEST_DIR') === false) putenv('REDIR_TEST_DIR='.dirname(__FILE__) . '/../../pdo/tests/');
|
|
require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
|
|
$db = PDOTest::factory();
|
|
|
|
$db->exec("CREATE TABLE test (id int NOT NULL, PRIMARY KEY (id))");
|
|
$db->exec("INSERT INTO test (id) VALUES (1)");
|
|
|
|
function heLLO($row) {
|
|
return $row;
|
|
}
|
|
|
|
foreach ($db->query("SELECT * FROM test")->fetchAll(PDO::FETCH_FUNC, 'heLLO') as $row) {
|
|
var_dump($row);
|
|
}
|
|
|
|
--EXPECT--
|
|
string(1) "1"
|