File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -66,3 +66,5 @@ PHP 8.1 INTERNALS UPGRADE NOTES
66
66
- The last_id handler now returns a zend_string* instead of returning a
67
67
char* and the length as an out param, and accepts a zend_string* instead
68
68
of char* for the optional sequence/table name.
69
+ - The php_pdo_str_tolower_dup() PDO_API has been removed use zend_str_tolower_dup()
70
+ or zend_string_tolower_ex().
Original file line number Diff line number Diff line change @@ -62,14 +62,6 @@ PDO_API zend_class_entry *php_pdo_get_exception(void) /* {{{ */
62
62
}
63
63
/* }}} */
64
64
65
- PDO_API char * php_pdo_str_tolower_dup (const char * src , int len ) /* {{{ */
66
- {
67
- char * dest = emalloc (len + 1 );
68
- zend_str_tolower_copy (dest , src , len );
69
- return dest ;
70
- }
71
- /* }}} */
72
-
73
65
/* {{{ Return array of available PDO drivers */
74
66
PHP_FUNCTION (pdo_drivers )
75
67
{
You can’t perform that action at this time.
0 commit comments