CakeFest 2024: The Official CakePHP Conference

odbc_connection_string_is_quoted

(PHP 8 >= 8.2.0)

odbc_connection_string_is_quotedDetermines if an ODBC connection string value is quoted

Açıklama

odbc_connection_string_is_quoted(string $str): bool

Determines if a string is properly quoted for an ODBC connection string value. ODBC connection string quoting is performed using curly braces, and ending braces within a string must be escaped through repeating them twice, similar to SQL quoting.

Bağımsız Değişkenler

str

The string to check for quoting.

Dönen Değerler

true if quoted properly, false if not.

Ayrıca Bakınız

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top