php-src/ext/sqlite3/tests/exception_from_toString.phpt
Max Semenik 7f2f0c007c Migrate skip checks to --EXTENSIONS--, p4
For rationale, see #6787

Extensions migrated in part 4:
* simplexml
* skeleton
* soap
* spl
* sqlite3
* sysvmsg
* sysvsem
* tidy - also removed a check for an ancient dependency version
2021-04-08 10:36:44 +02:00

41 lines
755 B
PHP

--TEST--
Check that exceptions from __toString() are handled correctly
--EXTENSIONS--
sqlite3
--FILE--
<?php
class throws {
function __toString() {
throw new Exception("Sorry");
}
}
$db = new sqlite3(':memory:');
$db->exec('CREATE TABLE t(id int, v varchar(255))');
$stmt = $db->prepare('INSERT INTO t VALUES(:i, :v)');
$stmt->bindValue('i', 1234);
$stmt->bindValue('v', new throws);
try {
$stmt->execute();
} catch (Exception $e) {
echo "Exception thrown ...\n";
}
try {
$stmt->execute();
} catch (Exception $e) {
echo "Exception thrown ...\n";
}
$query = $db->query("SELECT * FROM t");
while ($row = $query->fetchArray(SQLITE3_ASSOC)) {
print_r($row);
}
?>
--EXPECT--
Exception thrown ...
Exception thrown ...