Searched refs:ctor_args (Results 1 – 6 of 6) sorted by relevance
/PHP-7.1/ext/pdo/tests/ |
H A D | bug_44159.phpt | 28 …error: PDO::ATTR_STATEMENT_CLASS requires format array(classname, array(ctor_args)); the classname… 31 …error: PDO::ATTR_STATEMENT_CLASS requires format array(classname, array(ctor_args)); the classname… 34 …error: PDO::ATTR_STATEMENT_CLASS requires format array(classname, array(ctor_args)); the classname…
|
/PHP-7.1/ext/pdo/ |
H A D | pdo_stmt.c | 56 ZEND_ARG_INFO(0, ctor_args) /* array */ in ZEND_END_ARG_INFO() 66 ZEND_ARG_INFO(0, ctor_args) /* array */ in ZEND_END_ARG_INFO() 1293 zval old_ctor_args, *ctor_args = NULL; in PHP_METHOD() local 1314 if (ctor_args) { in PHP_METHOD() 1315 if (Z_TYPE_P(ctor_args) == IS_ARRAY && zend_hash_num_elements(Z_ARRVAL_P(ctor_args))) { in PHP_METHOD() 1316 ZVAL_DUP(&stmt->fetch.cls.ctor_args, ctor_args); in PHP_METHOD() 1405 if (Z_TYPE_P(ctor_args) != IS_NULL && Z_TYPE_P(ctor_args) != IS_ARRAY) { in PHP_METHOD() 1410 if (Z_TYPE_P(ctor_args) != IS_ARRAY || !zend_hash_num_elements(Z_ARRVAL_P(ctor_args))) { in PHP_METHOD() 1411 ctor_args = NULL; in PHP_METHOD() 1415 if (ctor_args) { in PHP_METHOD() [all …]
|
H A D | pdo_dbh.c | 404 …t_instantiate(pdo_dbh_t *dbh, zval *object, zend_class_entry *dbstmt_ce, zval *ctor_args) /* {{{ */ in pdo_stmt_instantiate() argument 406 if (!Z_ISUNDEF_P(ctor_args)) { in pdo_stmt_instantiate() 407 if (Z_TYPE_P(ctor_args) != IS_ARRAY) { in pdo_stmt_instantiate() 424 …ecute_data, pdo_stmt_t *stmt, zval *object, zend_class_entry *dbstmt_ce, zval *ctor_args) /* {{{ */ in pdo_stmt_construct() argument 448 zend_fcall_info_args(&fci, ctor_args); in pdo_stmt_construct() 472 zval *options = NULL, *opt, *item, ctor_args; in PHP_METHOD() local 519 ZVAL_COPY_VALUE(&ctor_args, item); in PHP_METHOD() 521 ZVAL_UNDEF(&ctor_args); in PHP_METHOD() 525 ZVAL_COPY_VALUE(&ctor_args, &dbh->def_stmt_ctor_args); in PHP_METHOD() 528 if (!pdo_stmt_instantiate(dbh, return_value, dbstmt_ce, &ctor_args)) { in PHP_METHOD() [all …]
|
H A D | php_pdo_driver.h | 617 zval ctor_args; /* freed */ member
|
/PHP-7.1/ext/pdo_sqlite/tests/ |
H A D | bug48773.phpt | 2 Bug #48773 (Incorrect error when setting PDO::ATTR_STATEMENT_CLASS with ctor_args)
|
/PHP-7.1/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_statement_class.phpt | 85 public function fetchAll($fetch_style = 1, $column_index = 1, $ctor_args = array()) { 116 …error: PDO::ATTR_STATEMENT_CLASS requires format array(classname, array(ctor_args)); the classname…
|
Completed in 23 milliseconds