- The last_id handler now returns a zend_string* instead of returning a
char* and the length as an out param, and accepts a zend_string* instead
of char* for the optional sequence/table name.
+ - The php_pdo_str_tolower_dup() PDO_API has been removed use zend_str_tolower_dup()
+ or zend_string_tolower_ex().
}
/* }}} */
-PDO_API char *php_pdo_str_tolower_dup(const char *src, int len) /* {{{ */
-{
- char *dest = emalloc(len + 1);
- zend_str_tolower_copy(dest, src, len);
- return dest;
-}
-/* }}} */
-
/* {{{ Return array of available PDO drivers */
PHP_FUNCTION(pdo_drivers)
{