mirror of
https://github.com/php/php-src.git
synced 2026-04-20 06:21:12 +02:00
We return all integers that can be represented as such by PHP as integers, and only those that exceed the possible range as strings. On builds which represent integers with 64 bits, the range check is unnecessary and might cause code checkers to complain, so we skip this special casing via the preprocessor according to <http://git.php.net/?p=php-src.git;a=commit;h=99d087e5>.
28 lines
776 B
PHP
28 lines
776 B
PHP
--TEST--
|
|
Bug #63921 sqlite3::bindvalue and relative PHP functions aren't using sqlite3_*_int64 API
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('sqlite3')) die('skip');
|
|
if (PHP_INT_SIZE > 4) die('skip'); // skip for 64bit builds - there is another test for that
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$num = PHP_INT_MAX; // 32 bits
|
|
$conn = new sqlite3(':memory:');
|
|
$conn->query('CREATE TABLE users (id INTEGER NOT NULL, num INTEGER NOT NULL, PRIMARY KEY(id))');
|
|
|
|
$stmt = $conn->prepare('insert into users (id, num) values (:id, :num)');
|
|
$stmt->bindValue(':id', 1, SQLITE3_INTEGER);
|
|
$stmt->bindValue(':num', $num, SQLITE3_INTEGER);
|
|
$stmt->execute();
|
|
|
|
$stmt = $conn->query('SELECT num FROM users');
|
|
$result = $stmt->fetchArray();
|
|
|
|
var_dump($num,$result[0]);
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(2147483647)
|
|
int(2147483647)
|