It should be noted that PDO::FETCH_CLASS will call the constructor *after* setting the values (or calling __set).Estas constantes son definidas por esta extensión, y solo están disponibles si esta extensión ha sido compilada con PHP, o bien cargada en tiempo de ejecución.
PDO::PARAM_BOOL
    (int)
   PDO::PARAM_NULL
    (int)
   PDO::PARAM_INT
    (int)
   PDO::PARAM_STR
    (int)
   PDO::PARAM_STR_NATL
    (int)
   PDO::PARAM_STR_CHAR
    (int)
   PDO::PARAM_LOB
    (int)
   PDO::PARAM_STMT
    (int)
   PDO::PARAM_INPUT_OUTPUT
    (int)
   PDO::FETCH_DEFAULT
    (int)
   PDO::FETCH_LAZY
    (int)
   PDO::FETCH_LAZY devuelve un objeto PDORow
     que crea los nombres de propiedad del objeto a medida que se acceden.
     No es válido con PDOStatement::fetchAll().
    
   PDO::FETCH_ASSOC
    (int)
   PDO::FETCH_ASSOC devuelve un solo valor
     por nombre de columna.
    
   PDO::FETCH_NAMED
    (int)
   PDO::FETCH_NAMED devuelve un
     array de valores por nombre de columna.
    
   PDO::FETCH_NUM
    (int)
   PDO::FETCH_BOTH
    (int)
   PDO::FETCH_OBJ
    (int)
   PDO::FETCH_BOUND
    (int)
   true y asignar
     los valores de las columnas del juego de resultados a las variables PHP a las que
     están ligadas con el método
     PDOStatement::bindParam() o el método
     PDOStatement::bindColumn().
    
   PDO::FETCH_COLUMN
    (int)
   PDO::FETCH_CLASS
    (int)
   Nota: El objeto es inicializado mapeando las columnas del juego de resultados a las propiedades de la clase. Este proceso ocurre antes de que el constructor sea llamado, permitiendo la población de las propiedades, independientemente de su visibilidad o su marcador como
readonly. Si una propiedad no existe en la clase, el método mágico __set() será invocado si existe; de lo contrario, se creará una propiedad pública dinámica. Sin embargo, cuandoPDO::FETCH_PROPS_LATEtambién está especificado, el constructor es llamado antes de que las propiedades sean pobladas.
PDO::FETCH_INTO
    (int)
   PDO::FETCH_FUNC
    (int)
   PDO::FETCH_GROUP
    (int)
   PDO::FETCH_COLUMN o
     PDO::FETCH_KEY_PAIR.
    
   PDO::FETCH_UNIQUE
    (int)
   PDO::FETCH_KEY_PAIR
    (int)
   PDO::FETCH_CLASSTYPE
    (int)
   PDO::FETCH_SERIALIZE
    (int)
   PDO::FETCH_INTO,
     pero el objeto es proporcionado en forma de string serializado.
     El constructor de la clase nunca es llamado si esta bandera está definida.
     Obsoleto a partir de PHP 8.1.0.
    
   PDO::FETCH_PROPS_LATE
    (int)
   PDO::ATTR_AUTOCOMMIT
    (int)
   false, PDO intenta desactivar la validación automática
     cuando la conexión comienza una transacción.
    
   PDO::ATTR_PREFETCH
    (int)
   PDO::ATTR_TIMEOUT
    (int)
   PDO::ATTR_ERRMODE
    (int)
   PDO::ATTR_SERVER_VERSION
    (int)
   PDO::ATTR_CLIENT_VERSION
    (int)
   PDO::ATTR_SERVER_INFO
    (int)
   PDO::ATTR_CONNECTION_STATUS
    (int)
   PDO::ATTR_CASE
    (int)
   PDO::CASE_*.
    
   PDO::ATTR_CURSOR_NAME
    (int)
   PDO::ATTR_CURSOR
    (int)
   PDO::CURSOR_FWDONLY o
     PDO::CURSOR_SCROLL. Mantenga
     PDO::CURSOR_FWDONLY mientras sepa que necesita
     un cursor desplazable.
    
   PDO::ATTR_DRIVER_NAME
    (int)
   
Ejemplo #1 Uso de PDO::ATTR_DRIVER_NAME
<?php
if ($db->getAttribute(PDO::ATTR_DRIVER_NAME) == 'mysql') {
   echo "Uso de mysql; hacer algo específico de mysql aquí\n";
}
?>PDO::ATTR_ORACLE_NULLS
    (int)
   PDO::ATTR_PERSISTENT
    (int)
   PDO::ATTR_STATEMENT_CLASS
    (int)
   PDO::ATTR_FETCH_CATALOG_NAMES
    (int)
   PDO::ATTR_FETCH_TABLE_NAMES
    (int)
   PDO::ATTR_STRINGIFY_FETCHES
    (int)
   null) a ser tratados como strings.
     Los valores null permanecen sin cambios, a menos que PDO::ATTR_ORACLE_NULLS
     esté definido en PDO::NULL_TO_STRING.
    
   PDO::ATTR_MAX_COLUMN_LEN
    (int)
   PDO::ATTR_DEFAULT_FETCH_MODE
    (int)
   PDO::ATTR_EMULATE_PREPARES
    (int)
   PDO::ATTR_DEFAULT_STR_PARAM
    (int)
   PDO::PARAM_STR_NATL
     o PDO::PARAM_STR_CHAR.
    
    
     Disponible a partir de PHP  7.2.0.
    
   PDO::ERRMODE_SILENT
    (int)
   PDO::ERRMODE_WARNING
    (int)
   E_WARNING si ocurre un error.
     Ver los errores y la gestión de errores
     para más información sobre este atributo.
    
   PDO::ERRMODE_EXCEPTION
    (int)
   PDO::CASE_NATURAL
    (int)
   PDO::CASE_LOWER
    (int)
   PDO::CASE_UPPER
    (int)
   PDO::NULL_NATURAL
    (int)
   PDO::NULL_EMPTY_STRING
    (int)
   PDO::NULL_TO_STRING
    (int)
   PDO::FETCH_ORI_NEXT
    (int)
   PDO::FETCH_ORI_PRIOR
    (int)
   PDO::FETCH_ORI_FIRST
    (int)
   PDO::FETCH_ORI_LAST
    (int)
   PDO::FETCH_ORI_ABS
    (int)
   PDO::FETCH_ORI_REL
    (int)
   PDO::CURSOR_FWDONLY
    (int)
   PDO::CURSOR_SCROLL
    (int)
   PDO::FETCH_ORI_*
     para controlar las líneas recuperadas del juego de resultados.
    
   PDO::ERR_NONE
    (string)
   PDO::PARAM_EVT_ALLOC
    (int)
   PDO::PARAM_EVT_FREE
    (int)
   PDO::PARAM_EVT_EXEC_PRE
    (int)
   PDO::PARAM_EVT_EXEC_POST
    (int)
   PDO::PARAM_EVT_FETCH_PRE
    (int)
   PDO::PARAM_EVT_FETCH_POST
    (int)
   PDO::PARAM_EVT_NORMALIZE
    (int)
   PDO::SQLITE_DETERMINISTIC
    (int)
   It should be noted that PDO::FETCH_CLASS will call the constructor *after* setting the values (or calling __set).PDO::PARAM_STR_CHAR and PDO::PARAM_STR_NATL must be combined with PDO::PARAM_STR using bitwise-OR for parameter binding.
These flags control value quoting (e.g. PDO::quote) and, in some situations (see below), parameter binding  (e.g. PDO::bindParam, PDO::bindValue) to prefix string literals with N'' as defined in SQL-92.  As of PHP 7.3, only dblib and mysql support these flags.  For the mysql driver, the flags only affect parameter binding when PDO::ATTR_EMULATE_PREPARES is true (the default).
MySQL and MariaDB interpret string literals prefixed with N as being utf8 (not utf8mb4) regardless of `SET NAMES` or the charset parameter.  This can cause problems if the database/table/column charset is not utf8.  For example, in a database using utf8mb4, the query "SELECT * FROM table WHERE col = :param" and bindValue(":param", "\u{1F600}", PDO::PARAM_STR | PDO::PARAM_STR_NATL) will cause "PDOException: SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='".  Using PDO::PARAM_STR without PDO::PARAM_STR_NATL and ensuring the charset DSN parameter is set correctly can avoid this issue.
See:
https://wiki.php.net/rfc/extended-string-types-for-pdo
https://mariadb.com/kb/en/library/string-literals/
https://dev.mysql.com/doc/refman/8.0/en/string-literals.htmlDefault value for \PDO::ATTR_TIMEOUT is 30 seconds.
Ref.: https://github.com/php/php-src/blob/PHP-7.1.0/ext/pdo_mysql/mysql_driver.c#L600PDO::FETCH_UNIQUE not only fetches the unique values, it also uses the first SQL column as array key result, what is very useful for create quickly an index, eg :
<?php
$sql = <<<SQL
    SELECT ALL
        c1, -- For result indexing
        c1, c2
    FROM (
        VALUES
            ROW('ID-1', 'Value 1'),
            ROW('ID-2', 'Value 2a'),
            ROW('ID-2', 'Value 2b'),
            ROW('ID-3', 'Value 3')
    ) AS t (c1, c2);
    SQL;
$result = $pdo->query($sql);
print_r($result->fetchAll(PDO::FETCH_UNIQUE));
/*
Gives :
ID-1 => [c1 => ID-1,  c2 => Value 1]
ID-2 => [c1 => ID-2b, c2 => Value 2b]
ID-3 => [c1 => ID-3,  c2 => Value 3]
*/
?>Reference to all the PDO::MYSQL_* constants is available in MySQL's documentation for the driver here: https://dev.mysql.com/doc/connectors/en/apis-php-pdo-mysql.html
Such as the ones I was looking for PDO::MYSQL_ATTR_SSL_CA and PDO::MYSQL_ATTR_SSL_CAPATH which are not listed on this page.To bind a float, use PDO::PARAM_STR with bindValue. You can skip the PDO::PARAM_STR because it's the default option. Binding with bindParam will change the type of the bound variable to a string, which can lead to type errors.