ドロップダウンリストを表示

Test of PDOStatement::columnCount() このページは英語でのみ提供されています。

Example #1 : test success
Example #1
$input = [
  
'exec_statement' => 'CREATE TABLE fruit
                    (name, colour, calories INT];

                INSERT INTO fruit VALUES
                    (\'apple\', \'red\', 150],
                    (\'banana\', \'yellow\', 250],
                    (\'kiwi\', \'brown\', 75],
                    (\'lemon\', \'yellow\', 25],
                    (\'orange\', \'orange\', 300],
                    (\'pear\', \'green\', 150],
                    (\'watermelon\', \'pink\', 90)'
,
  
'statement' => 'SELECT name, colour, calories FROM fruit',
]
$expected_output = $test_output
$test_output = [
  
'result' => [
    
'pdo' => 'PDO instance',
    
'count' => 7,
    
'pdostatement' => 'PDOStatement instance',
    
'int' => 3,
  ],
  
'php_version' => '7.1.33 Linux x86_64',
]