Home
last modified time | relevance | path

Searched refs:call (Results 1 – 25 of 281) sorted by path

12345678910>>...12

/PHP-5.4/
H A D.gdbinit7 call ts_resource_ex while no process is running,
H A DINSTALL1172 location on Mac OS X is /usr/local/php/php.ini and a call to
1198 version of this PHP binary. A call to phpinfo() will also reveal this
1326 Example #1 phpinfo() call
2023 To be sure your php.ini is being read by PHP, make a call to
H A DNEWS596 . Added clear_env configuration directive to disable clearenv() call.
1499 . Fixed bug #40459 (Stat and Dir stream wrapper methods do not call
1531 when close handler call exit). (Laruence)
1980 . Added indirect method call through array. FR #47160. (Felipe)
3240 call libmysql). (Kalle, tre-php-net at crushedhat dot com)
4381 getSignature() call). (Greg)
4837 open(2) system call. (Mikko)
6773 - Fixed bug #39625 (Apache crashes on importStylesheet call). (Rob)
7529 - Fixed bug #36872 (session_destroy() fails after call to
7983 functions to not call __autoload(). (Dmitry)
[all …]
H A DREADME.NEW-OUTPUT-API7 and there's an API call for every output handler op.
H A DREADME.PARAMETER_PARSING_API46 f - function or array containing php method call info (returned as
H A DREADME.STREAMS124 The buffer is allocated using pemalloc(); you need to call pefree() to
144 NOTE: If you only need to seek forward, there is no need to call this
154 NOTE: Never call this function with an origstream that is referenced
H A DREADME.UNIX-BUILD-SYSTEM80 Make sure to call this after PHP_NEW_EXTENSION, because $ext_builddir
H A DREADME.namespaces92 current namespace (and are known at the time the call is parsed) are
97 namespace A\B\foo() and if it doesn't exist PHP tries to call internal
99 internal PHP functions, however using \foo() you are able to call any
107 A\B\foo() first tries to call function foo() from namespace A\B, then
108 it tries to find class A\B (__autoload() it if necessary) and call its
117 foo(); // first tries to call "foo" defined in namespace "A"
137 B\foo(); // first tries to call function "foo" from namespace "A\B"
139 \B\foo(); // first tries to call function "foo" from namespace "B"
146 A\foo(); // first tries to call function "foo" from namespace "A\A"
148 // then tries to call function "foo" from namespace "A"
[all …]
H A DUPGRADING200 - call_user_func_array() no longer allows call-time pass by reference.
349 or from the node you call the method on
392 of serialize() call continues to be an unsupported scenario and should
601 - Function call result array access, e.g.:
H A DUPGRADING.INTERNALS141 call: zend_list_insert(a, SOMETYPE TSRMLS_CC);
147 call: context = php_stream_context_alloc(TSRMLS_C);
151 call: context = php_stream_context_alloc(TSRMLS_C);
/PHP-5.4/Zend/
H A DOBJECTS2_HOWTO6 1. As a result of a function call. E.g.:
24 constructor call. The get_constructor handler table entry should be
77 Object access - method call
89 call_method handler is used to perform method call. Parameters are
H A DREADME.ZEND_VM5 fields and using different execution methods (call threading, switch threading
H A DZEND_CHANGES338 not. If not, it will call a default __clone() which will copy
381 for classes. Classes which have a constructor method call this
387 common to call parent constructors from derived classes, the way
460 one would have to explicitly call parent::__destruct() in the
900 Note that setting [] results in a call to offsetSet() with
974 $str = (string) $obj; // call __toString()
976 echo $obj; // call __toString()
1084 This complex name has a simple explanation - you can now call
1123 * Ability to call member functions of other classes from within
1127 child function, and call the parent function from it.
[all …]
H A Dmicro_bench.php119 function call($n) { function in Foo
334 $x->call(N);
/PHP-5.4/Zend/RFCs/
H A D001.txt52 the class MyClass and call one of its methods.
84 is duplicated (!). Therefore, the call to foo() on line 21 will
85 result in the $obj->setMember("foo") call being called on a duplicate
/PHP-5.4/Zend/tests/
H A D019.phpt169 // call isset() with two args, both set
180 // call isset() with two args, but one set
304 // call the functiont
H A D028.phpt2 Testing function call through of array item
H A Dbug20242.phpt2 Bug #20242 (Method call in front of class definition)
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)
25 * call foo::fail. In PHP 5 we first evaluate static class
26 * properties and then do the function call.
H A Dbug27731.phpt2 Bug #27731 (error_reporing() call inside @ block does not work correctly)
H A Dbug30791.phpt2 Bug #30791 (magic methods (__sleep/__wakeup/__toString) call __call if object is overloaded)
H A Dbug38047.phpt22 foreach ($backtrace as $call) {
24 if (isset($call["file"])) {
25 echo $call["file"];
26 if (isset($call["line"])) {
27 echo ":".$call["line"];
30 if (isset($call["function"])) {
31 echo " ".$call["function"]."()";
38 //This will not create file and line items for the call into the error handler
H A Dbug38220.phpt30 echo "before call $method\n";
33 echo "after call $method\n";
63 before call func1
69 after call func1
71 before call close
77 after call close
78 before call func1
84 after call func1
86 before call close
92 after call close
H A Dbug41026.phpt26 Warning: (Registered shutdown functions) Unable to call self::on_shutdown() - function does not exi…

Completed in 95 milliseconds

12345678910>>...12