Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/sqlite3/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/sqlite3/tests/bug63921-64bit.phpt |
--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 < 8) die('skip'); // skip for 32bit builds - there is another test for that ?> --FILE-- <?php $num = 100004313234244; // notice this exceeds 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(100004313234244) string(15) "100004313234244"
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare