mirror of
https://github.com/php/php-src.git
synced 2026-04-29 03:03:26 +02:00
6f32e1c690
RFC: https://wiki.php.net/rfc/deprecations_php_8_5. Closes GH-19526
16 lines
300 B
PHP
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)
|