Home
last modified time | relevance | path

Searched refs:ctor_args (Results 1 – 6 of 6) sorted by relevance

/PHP-5.6/ext/pdo/tests/
H A Dbug_44159.phpt28 …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-5.6/ext/pdo/
H A Dpdo_stmt.c56 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()
828 stmt->fetch.cls.ctor_args = NULL; in do_fetch_opt_finish()
1339 if (ctor_args) { in PHP_METHOD()
1340 if (Z_TYPE_P(ctor_args) == IS_ARRAY && zend_hash_num_elements(Z_ARRVAL_P(ctor_args))) { in PHP_METHOD()
1342 *stmt->fetch.cls.ctor_args = *ctor_args; in PHP_METHOD()
1345 stmt->fetch.cls.ctor_args = NULL; in PHP_METHOD()
1432 if (Z_TYPE_P(ctor_args) != IS_NULL && Z_TYPE_P(ctor_args) != IS_ARRAY) { in PHP_METHOD()
1437 if (Z_TYPE_P(ctor_args) != IS_ARRAY || !zend_hash_num_elements(Z_ARRVAL_P(ctor_args))) { in PHP_METHOD()
1438 ctor_args = NULL; in PHP_METHOD()
[all …]
H A Dpdo_dbh.c434 …ntiate(pdo_dbh_t *dbh, zval *object, zend_class_entry *dbstmt_ce, zval *ctor_args TSRMLS_DC) /* {{… in pdo_stmt_instantiate()
436 if (ctor_args) { in pdo_stmt_instantiate()
437 if (Z_TYPE_P(ctor_args) != IS_ARRAY) { in pdo_stmt_instantiate()
455 …ruct(pdo_stmt_t *stmt, zval *object, zend_class_entry *dbstmt_ce, zval *ctor_args TSRMLS_DC) /* {{… in pdo_stmt_construct()
480 zend_fcall_info_args(&fci, ctor_args TSRMLS_CC); in pdo_stmt_construct()
511 zval *options = NULL, **opt, **item, *ctor_args; in PHP_METHOD() local
556 ctor_args = *item; in PHP_METHOD()
558 ctor_args = NULL; in PHP_METHOD()
562 ctor_args = dbh->def_stmt_ctor_args; in PHP_METHOD()
565 if (!pdo_stmt_instantiate(dbh, return_value, dbstmt_ce, ctor_args TSRMLS_CC)) { in PHP_METHOD()
[all …]
H A Dphp_pdo_driver.h620 zval *ctor_args; /* freed */ member
/PHP-5.6/ext/pdo_sqlite/tests/
H A Dbug48773.phpt2 Bug #48773 (Incorrect error when setting PDO::ATTR_STATEMENT_CLASS with ctor_args)
/PHP-5.6/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_statement_class.phpt85 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 59 milliseconds