1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00
Files
archived-php-src/ext/pdo_pgsql/tests/php_8.5_deprecations.phpt
2025-08-26 09:06:19 +02:00

16 lines
300 B
PHP

--TEST--
PDO_pgsql: PHP 8.5 deprecations
--EXTENSIONS--
pdo_pgsql
--FILE--
<?php
var_dump(
PDO::PGSQL_ATTR_DISABLE_PREPARES,
);
?>
--EXPECTF--
Deprecated: Constant PDO::PGSQL_ATTR_DISABLE_PREPARES is deprecated since 8.5, use Pdo\Pgsql::ATTR_DISABLE_PREPARES instead in %s on line %d
int(1000)