Searched refs:constructor (Results 1 - 25 of 33) sorted by relevance

12

/PHP_5_5/ext/spl/examples/
H A Dkeyfilter.inc18 * are strings. In other words you can put an iterator into the constructor
/PHP_5_5/ext/spl/internal/
H A Dcachingiterator.inc129 * @throw exception when CALL_TOSTRING was not specified in constructor
H A Dfilteriterator.inc19 * you can put an iterator into the constructor and the instance will only
H A Diteratoriterator.inc63 /** \return the inner iterator as passed to the constructor
H A Dlimititerator.inc53 * specified in constructor).
73 /** Rewind to offset specified in constructor
109 * constructor).
H A Drecursivecachingiterator.inc83 * constructor this fucntion returns false so that getChildren does
H A Drecursiveiteratoriterator.inc60 /** Rewind to top iterator as set in constructor
H A Dspldoublylinkedlist.inc143 /** Rewind to top iterator as set in constructor
H A Dsplobjectstorage.inc28 /** Rewind to top iterator as set in constructor
/PHP_5_5/scripts/dev/generate-phpt/src/
H A DgtMethod.php29 * Set the names of the class constructor arguments. Take only mandatory argument names.
34 $constructor = $reflectionClass->getConstructor(); variable
35 foreach($constructor->getParameters() as $i => $param) {
64 * Return the list of constructor argument names
92 * Set the list of arguments to be passed to the constructor
107 * Return the list of the arguments to be passed to the constructor
117 * Set up the source statements that initialise constructor arguments;
131 * Return the constructor initialisation statements
/PHP_5_5/ext/interbase/
H A Dphp_ibase_udf.c130 static void __attribute__((constructor)) init()
/PHP_5_5/ext/pdo/
H A Dpdo_dbh.c429 pdo_raise_impl_error(dbh, NULL, "HY000", "constructor arguments must be passed as an array" TSRMLS_CC);
432 if (!dbstmt_ce->constructor) {
433 pdo_raise_impl_error(dbh, NULL, "HY000", "user-supplied statement does not accept constructor arguments" TSRMLS_CC);
457 if (dbstmt_ce->constructor) {
486 fcc.function_handler = dbstmt_ce->constructor;
544 if (dbstmt_ce->constructor && !(dbstmt_ce->constructor->common.fn_flags & (ZEND_ACC_PRIVATE|ZEND_ACC_PROTECTED))) {
546 "user-supplied statement class cannot have a public constructor" TSRMLS_CC);
812 if ((*pce)->constructor && !((*pce)->constructor
[all...]
H A Dpdo_stmt.c755 if (ce->constructor) {
778 fcc->function_handler = ce->constructor;
783 pdo_raise_impl_error(stmt->dbh, stmt, "HY000", "user-supplied class does not have a constructor, use NULL for the ctor_params parameter, or simply omit it" TSRMLS_CC);
977 if (ce->constructor && (flags & PDO_FETCH_PROPS_LATE)) {
981 pdo_raise_impl_error(stmt->dbh, stmt, "HY000", "could not call class constructor" TSRMLS_CC);
1177 if (ce->constructor && !(flags & (PDO_FETCH_PROPS_LATE | PDO_FETCH_SERIALIZE))) {
1181 pdo_raise_impl_error(stmt->dbh, stmt, "HY000", "could not call class constructor" TSRMLS_CC);
/PHP_5_5/ext/spl/
H A Dspl_engine.h37 zend_call_method(retval, pce, &pce->constructor, pce->constructor->common.function_name, strlen(pce->constructor->common.function_name), NULL, 1, arg1, NULL TSRMLS_CC);
47 zend_call_method(retval, pce, &pce->constructor, pce->constructor->common.function_name, strlen(pce->constructor->common.function_name), NULL, 2, arg1, arg2 TSRMLS_CC);
H A Dspl_directory.c451 if (ce->constructor->common.scope != spl_ce_SplFileInfo) {
454 zend_call_method_with_1_params(&return_value, ce, &ce->constructor, "__construct", NULL, arg1);
495 if (ce->constructor->common.scope != spl_ce_SplFileInfo) {
498 zend_call_method_with_1_params(&return_value, ce, &ce->constructor, "__construct", NULL, arg1);
517 if (ce->constructor->common.scope != spl_ce_SplFileObject) {
522 zend_call_method_with_2_params(&return_value, ce, &ce->constructor, "__construct", NULL, arg1, arg2);
1111 the constructor fails. Here we use this to ensure the object
1114 When the constructor gets called the object is already created
1416 "The parent constructor was not called: the object is in an "
/PHP_5_5/main/streams/
H A Duserspace.c300 if (uwrap->ce->constructor) {
316 fcc.function_handler = uwrap->ce->constructor;
322 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not execute %s::%s()", uwrap->ce->name, uwrap->ce->constructor->common.function_name);
/PHP_5_5/ext/opcache/
H A Dzend_persist.c603 if (ce->constructor) {
604 ce->constructor = zend_shared_alloc_get_xlat_entry(ce->constructor);
606 ce->constructor->op_array.refcount++;
/PHP_5_5/ext/reflection/
H A Dphp_reflection.c1408 fcc.function_handler = ce_ptr->constructor;
3168 Returns whether this method is the constructor */
3181 RETURN_BOOL(mptr->common.fn_flags & ZEND_ACC_CTOR && intern->ce->constructor && intern->ce->constructor->common.scope == mptr->common.scope);
3637 Returns the class' constructor if there is one, NULL otherwise */
3648 if (ce->constructor) {
3649 reflection_method_factory(ce, ce->constructor, NULL, return_value TSRMLS_CC);
4082 /* Basically, the class is instantiable. Though, if there is a constructor
4084 if (!ce->constructor) {
4088 RETURN_BOOL(ce->constructor
4197 zend_function *constructor; local
4296 zend_function *constructor; local
[all...]
/PHP_5_5/sapi/cli/
H A Dphp_cli.c1127 EX(function_state).function = pce->constructor;
1128 zend_call_method_with_1_params(&ref, pce, &pce->constructor, "__construct", NULL, arg);
1360 * because the executor's constructor does not set initialize it.
/PHP_5_5/Zend/
H A Dzend_object_handlers.c1167 if (function_name_strlen == ce->name_length && ce->constructor) {
1169 /* Only change the method to the constructor if the constructor isn't called __construct
1172 if (!memcmp(lc_class_name, lc_function_name, function_name_strlen) && memcmp(ce->constructor->common.function_name, "__", sizeof("__") - 1)) {
1173 fbc = ce->constructor;
1298 zend_function *constructor = zobj->ce->constructor; local
1300 if (constructor) {
1301 if (constructor->op_array.fn_flags & ZEND_ACC_PUBLIC) {
1303 } else if (constructor
[all...]
H A Dzend_compile.c1637 if (!CG(active_class_entry)->constructor) {
1638 CG(active_class_entry)->constructor = (zend_function *) CG(active_op_array);
1641 if (CG(active_class_entry)->constructor) {
1642 zend_error(E_STRICT, "Redefining already defined constructor for class %s", CG(active_class_entry)->name);
1644 CG(active_class_entry)->constructor = (zend_function *) CG(active_op_array);
3053 if (ce->constructor) {
3054 if (ce->parent->constructor && ce->parent->constructor->common.fn_flags & ZEND_ACC_FINAL) {
3056 ce->parent->name, ce->parent->constructor->common.function_name,
3057 ce->name, ce->constructor
[all...]
/PHP_5_5/ext/soap/
H A Dsoap.c779 SoapParam constructor */
801 SoapHeader constructor */
841 SoapFault constructor */
896 SoapFault constructor */
939 SoapVar constructor */
1099 SoapServer constructor */
1685 /* Call constructor */
1687 zval c_ret, constructor; local
1690 INIT_ZVAL(constructor);
1692 ZVAL_STRING(&constructor, ZEND_CONSTRUCTOR_FUNC_NAM
1715 zval c_ret, constructor; local
[all...]
/PHP_5_5/ext/mysqli/
H A Dmysqli.c1025 constructor for statement object.
1082 constructor for result object.
1283 if (ce->constructor) {
1319 fcc.function_handler = ce->constructor;
1325 zend_throw_exception_ex(zend_exception_get_default(TSRMLS_C), 0 TSRMLS_CC, "Could not execute %s::%s()", ce->name, ce->constructor->common.function_name);
1335 zend_throw_exception_ex(zend_exception_get_default(TSRMLS_C), 0 TSRMLS_CC, "Class %s does not have a constructor hence you cannot use ctor_params", ce->name);
/PHP_5_5/ext/mysql/
H A Dphp_mysql.c2169 if (ce->constructor) {
2205 fcc.function_handler = ce->constructor;
2211 zend_throw_exception_ex(zend_exception_get_default(TSRMLS_C), 0 TSRMLS_CC, "Could not execute %s::%s()", ce->name, ce->constructor->common.function_name);
2221 zend_throw_exception_ex(zend_exception_get_default(TSRMLS_C), 0 TSRMLS_CC, "Class %s does not have a constructor hence you cannot use ctor_params", ce->name);
/PHP_5_5/ext/phar/
H A Dphar_object.c1148 * This function is used as the constructor for both the Phar and PharData
1183 zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "Cannot call constructor twice");
1272 &spl_ce_RecursiveDirectoryIterator->constructor, "__construct", NULL, &arg1, &arg2);
1826 &spl_ce_RecursiveDirectoryIterator->constructor, "__construct", NULL, &arg, &arg2);
1843 &spl_ce_RecursiveIteratorIterator->constructor, "__construct", NULL, iter);
1868 &spl_ce_RegexIterator->constructor, "__construct", NULL, iteriter, &arg2);
2260 zend_call_method_with_1_params(&ret, ce, &ce->constructor, "__construct", NULL, &arg1);
4484 zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "Cannot call constructor twice");
4525 &spl_ce_SplFileInfo->constructor, "__construct", NULL, &arg1);

Completed in 94 milliseconds

12