Home
last modified time | relevance | path

Searched refs:method (Results 1 – 25 of 702) sorted by path

12345678910>>...29

/PHP-5.5/
H A DINSTALL68 choices for the method of connecting PHP to the server. For many
341 advantages and drawbacks of each method. Building as a shared object
344 apache (static method) means that PHP will load and run faster. For
877 simplest method. The core package has been separated from the various
939 using this method, it is now deprecated. You can still use the old
2113 No, it is possible to handle any request method, e.g. CONNECT.
H A DNEWS257 method calls). (Stas)
3738 . Add createCollation() method. (Brad Dewar)
4323 in method. (Scott)
4336 method/function definition). (Felipe)
6417 incorrect method name). (Felipe)
6702 and $this->$method()). (Dmitry)
7790 . Added addEmptyDir method
8120 SoapServer::setClass() method). (Dmitry)
8335 exception is thrown from __get method). (Tony)
8530 method). (Tony)
[all …]
H A DREADME.PARAMETER_PARSING_API57 f - function or array containing php method call info (returned as
H A DREADME.STREAMS229 php_stream_ops structure, which holds the "virtual method table" for the
235 method is intended to be used for streams if there is an underlying method
H A DREADME.namespaces109 static method foo()
138 // then calls method "foo" of internal class "B"
140 // then calls method "foo" of class "B" from global scope
147 // then tries to call method "foo" of class "A" from namespace "A"
149 // then calls method "foo" of internal class "A"
151 // then calls method "foo" of class "A" from global scope
/PHP-5.5/Zend/
H A DOBJECTS2_HOWTO23 needed, and also provide constructor method that would handle
64 This method is meant to be used for send-by-reference and assign-by-reference
77 Object access - method call
80 get_method handler is used to find method description by name. It
82 method. If the type is ZEND_OVERLOADED_FUNCTION, the method would be
89 call_method handler is used to perform method call. Parameters are
170 natively, this method should create and return proxy object for use
184 get_method - retrieves description of the method
186 call_method - calls the method (parameters should be put on stack like
189 get_constructor - get description for the object constructor method
H A DREADME.ZEND_VM8 method). As in most PHP applications raw execution speed isn't the limiting
H A DZEND_CHANGES10 (for instance integers and strings). The drawback of this method
12 variable was assigned or parameters were passed to a method. The
139 abstract method only declares the method's signature and does not
226 objects that are passed as parameters to a method.
339 all of the object's properties. If a __clone() method is
381 for classes. Classes which have a constructor method call this
382 method on each newly-created object, so it is suitable for any
421 compatibility issues is if the class had a method named
437 destructor, which is a class method name __destruct() that
600 Note: The method getMessage() is a final read only access method to
[all …]
H A DZend.m4157 [ --with-zend-vm=TYPE Set virtual machine dispatch method. Type is
179 AC_MSG_CHECKING([virtual machine dispatch method])
193 AC_DEFINE(ZEND_VM_KIND,ZEND_VM_KIND_SWITCH,[virtual machine dispatch method])
196 AC_DEFINE(ZEND_VM_KIND,ZEND_VM_KIND_GOTO,[virtual machine dispatch method])
200 AC_DEFINE(ZEND_VM_KIND,ZEND_VM_KIND_CALL,[virtual machine dispatch method])
/PHP-5.5/Zend/RFCs/
H A D001.txt27 de-referencing method return values, tight control of object
49 $object = new MyClass(); $object->method();
97 according to this handle and, therefore, the setMember() method is
H A D002.txt49 Static method: Namespace:class::method
59 Static method: :class::method
73 Static method: Name:Space:class::method
/PHP-5.5/Zend/tests/
H A D009.phpt33 Strict Standards: Non-static method foo::bar() should not be called statically in %s on line %d
36 Strict Standards: Non-static method foo::bar() should not be called statically in %s on line %d
H A Daccess_modifiers_008.phpt21 Fatal error: Call to protected method B1::f() from context 'B2' in %s on line %d
H A Daccess_modifiers_009.phpt26 Fatal error: Call to protected method B1::f() from context 'B2' in %s on line %d
H A Daccess_modifiers_010.phpt31 Fatal error: Call to private method d::test2() from context 'a' in %s on line %d
H A Daccess_modifiers_012.phpt9 echo "In __call() for method $name()\n";
19 In __call() for method none()
20 In __call() for method prot()
21 In __call() for method priv()
H A Dargument_restriction_006.phpt2 Bug #60174 (Notice when array in method prototype error)
H A Dbug19859.phpt9 function __call($method,$args)
11 print "test::__call invoked for method '$method'\n";
20 test::__call invoked for method 'fake'
21 test::__call invoked for method 'fake'
22 test::__call invoked for method 'fake'
H A Dbug20242.phpt15 echo "method\n";
21 method
H A Dbug21888.phpt2 Bug #21888 (protected property and protected method of the same name)
14 print "protected method\n";
35 protected method
H A Dbug22725.phpt2 Bug #22725 (A derived class can call a parent's protected method that calls a private method)
H A Dbug26802.phpt2 Bug #26802 (Can't call static method using a variable)
16 static $method = 'global_func';
28 $method = 'foo_func';
29 foo::$method();
H A Dbug29104.phpt2 Bug #29104 (Function declaration in method doesn't work)
H A Dbug29674.phpt2 Bug #29674 (inherited method doesn't have access to private variables of the derived class)
H A Dbug30451.phpt10 protected static function method() {
20 var_dump(self::method());
21 var_dump(parent::method());

Completed in 51 milliseconds

12345678910>>...29