summaryrefslogtreecommitdiff
path: root/ext/pdo_dblib/tests/bug_71667.phpt
blob: 3c1a817808b6c7d89aa979030069ea98be5c7497 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--TEST--
PDO_DBLIB: Emulate how mssql extension names "computed" columns
--SKIPIF--
<?php
if (!extension_loaded('pdo_dblib')) die('skip not loaded');
require __DIR__ . '/config.inc';
?>
--FILE--
<?php
require __DIR__ . '/config.inc';

$stmt = $db->prepare("SELECT 1, 2 AS named, 3");
$stmt->execute();
var_dump($stmt->fetchAll());

?>
--EXPECT--
array(1) {
  [0]=>
  array(6) {
    ["computed"]=>
    int(1)
    [0]=>
    int(1)
    ["named"]=>
    int(2)
    [1]=>
    int(2)
    ["computed1"]=>
    int(3)
    [2]=>
    int(3)
  }
}