Searched refs:mysqli_warning (Results 1 – 9 of 9) sorted by relevance
/PHP-8.1/ext/mysqli/tests/ |
H A D | mysqli_warning_unclonable.phpt | 2 Trying to clone mysqli_warning object 29 …if (!is_object($warning = mysqli_get_warnings($link)) || 'mysqli_warning' != get_class($warning)) { 30 …printf("[005] Expecting object/mysqli_warning, got %s/%s\n", gettype($tmp), (is_object($tmp) ? var… 41 Fatal error: Trying to clone an uncloneable object of class mysqli_warning in %s on line %d
|
H A D | mysqli_get_warnings.phpt | 45 …if (!is_object($warning = mysqli_get_warnings($link)) || 'mysqli_warning' != get_class($warning)) { 46 …printf("[008] Expecting object/mysqli_warning, got %s/%s\n", gettype($tmp), (is_object($tmp) ? var… 74 …if (!is_object($warning = mysqli_get_warnings($link)) || 'mysqli_warning' != get_class($warning)) { 75 …printf("[017] Expecting object/mysqli_warning, got %s/%s\n", gettype($tmp), (is_object($tmp) ? var… 96 if (!is_object($warning = new mysqli_warning($mysqli))) 97 printf("[024] Expecting object/mysqli_warning, got %s/%s", gettype($warning), $warning); 109 $warning = new mysqli_warning($mysqli); 129 $warning = new mysqli_warning($mysqli); 138 $warning = new mysqli_warning($stmt);
|
H A D | mysqli_stmt_get_warnings.phpt | 60 printf("[011] Expecting mysqli_warning object, got %s/%s\n", gettype($warning), $warning); 62 if ('mysqli_warning' !== get_class($warning)) 63 printf("[012] Expecting object of type mysqli_warning got type '%s'", get_class($warning)); 66 printf("[013] Object mysqli_warning seems to lack method next()\n");
|
H A D | 066.phpt | 2 function test: mysqli_warning object
|
/PHP-8.1/ext/mysqli/ |
H A D | mysqli.stub.php | 236 public function get_warnings(): mysqli_warning|false {} 660 public function get_warnings(): mysqli_warning|false {} 727 final class mysqli_warning class 896 function mysqli_get_warnings(mysqli $mysql): mysqli_warning|false {} 1016 function mysqli_stmt_get_warnings(mysqli_stmt $statement): mysqli_warning|false {}
|
H A D | mysqli_warning.c | 175 PHP_METHOD(mysqli_warning, next) in PHP_METHOD() argument 257 PHP_METHOD(mysqli_warning, __construct) in PHP_METHOD() argument
|
H A D | config.w32 | 20 "mysqli_warning.c";
|
H A D | config.m4 | 78 mysqli_report.c mysqli_driver.c mysqli_warning.c \
|
H A D | mysqli_arginfo.h | 170 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX(arginfo_mysqli_get_warnings, 0, 1, mysqli_warning, MAY_… 346 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX(arginfo_mysqli_stmt_get_warnings, 0, 1, mysqli_warning,… 485 …TIVE_RETURN_OBJ_TYPE_MASK_EX(arginfo_class_mysqli_get_warnings, 0, 0, mysqli_warning, MAY_BE_FALSE) 846 ZEND_METHOD(mysqli_warning, __construct); 847 ZEND_METHOD(mysqli_warning, next); 1083 ZEND_ME(mysqli_warning, __construct, arginfo_class_mysqli_warning___construct, ZEND_ACC_PRIVATE) 1084 ZEND_ME(mysqli_warning, next, arginfo_class_mysqli_warning_next, ZEND_ACC_PUBLIC)
|
Completed in 18 milliseconds