Home
last modified time | relevance | path

Searched refs:global (Results 1 – 25 of 246) sorted by relevance

12345678910

/PHP-5.5/ext/standard/tests/general_functions/
H A Dimport_request1.phpt22 Warning: import_request_variables(): Attempted super-global (_GET) variable overwrite in %s on line…
24 Warning: import_request_variables(): Attempted super-global (_POST) variable overwrite in %s on lin…
26 Warning: import_request_variables(): Attempted super-global (_COOKIE) variable overwrite in %s on l…
28 Warning: import_request_variables(): Attempted super-global (_FILES) variable overwrite in %s on li…
30 Warning: import_request_variables(): Attempted super-global (_REQUEST) variable overwrite in %s on …
32 Warning: import_request_variables(): Attempted super-global (_GET) variable overwrite in %s on line…
34 Warning: import_request_variables(): Attempted super-global (_POST) variable overwrite in %s on lin…
36 Warning: import_request_variables(): Attempted super-global (_COOKIE) variable overwrite in %s on l…
38 Warning: import_request_variables(): Attempted super-global (_FILES) variable overwrite in %s on li…
42 Warning: import_request_variables(): Attempted super-global (_GET) variable overwrite in %s on line…
[all …]
H A Ddebug_zval_dump_v.phpt11 echo "--- Variation 1: global variable inside a function ---\n";
12 $global_var = 10; //declaring global variable
14 /* function to dump reference count of global variable,$global_var
17 global $global_var;
20 echo "\n-- Value of global variable inside dump_globalvar() --\n";
24 echo "\n-- Value of global variable, before calling dump_globalvar() --\n";
28 and global variables inside the function */
124 --- Variation 1: global variable inside a function ---
126 -- Value of global variable, before calling dump_globalvar() --
132 -- Value of global variable inside dump_globalvar() --
[all …]
/PHP-5.5/ext/session/tests/
H A Dsave_handler.inc5 global $session_save_path, $name;
13 global $session_save_path, $name;
19 global $session_save_path, $name, $session_id;
27 global $session_save_path, $name, $session_id;
40 global $session_save_path, $name;
47 global $session_save_path, $name;
/PHP-5.5/Zend/tests/
H A D035.phpt2 Using 'static' and 'global' in global scope
9 global $var, $var, $var;
H A Dbug35470.phpt2 Bug #35470 (Assigning global using variable name from array doesn't function)
6 global ${$x[0]};
H A Dbug46106.phpt2 Bug #46106 (Memory leaks when using global statement)
12 global $foo;
H A Dbug54372.phpt2 Bug #54372 (Crash accessing global object itself returned from its __get() handle)
18 global $test3;
H A Dclosure_019.phpt2 Closure 019: Calling lambda using $GLOBALS and global $var
11 global $lambda;
/PHP-5.5/ext/standard/tests/file/
H A Dfopen_include_path.inc14 global $reldirs;
28 global $newdirs, $dir4;
44 global $newdirs;
60 global $reldirs;
77 global $newdirs;
86 global $reldirs;
/PHP-5.5/ext/zlib/tests/
H A Dgzopen_include_path.inc14 global $reldirs;
28 global $newdirs, $dir4;
44 global $newdirs;
60 global $reldirs;
77 global $newdirs;
86 global $reldirs;
/PHP-5.5/tests/classes/
H A Dmethod_call_variation_001.phpt2 …b[Y] represents a method name on $a. But in $a->X[Y](), $a->X[Y] represents a global function name.
24 echo "Called global foo($a, $b)\n";
36 Called global foo(5, 6)
37 Called global foo(7, 8)
H A Ddestructor_and_globals.phpt9 global $test_cnt;
17 global $test_cnt, $test_num;
28 global $test_cnt;
/PHP-5.5/tests/lang/
H A DforeachLoopIteratorAggregate.001.phpt10 global $indent;
16 global $indent;
22 global $indent;
28 global $indent;
34 global $indent;
46 global $indent;
52 global $indent;
58 global $indent;
64 global $indent;
70 global $indent;
[all …]
H A DpassByReference_007.phpt7 global $a;
12 global $a;
17 global $a;
22 global $a;
28 global $a;
33 global $a;
H A Dbug24396.phpt2 Bug #24396 (global $$variable broken)
9 global $$k; // comment this out and it works in PHP 5 too..
H A D007.phpt2 Function call with global and static variables
11 global $b;
H A DforeachLoopIterator.001.phpt11 global $indent;
17 global $indent;
23 global $indent;
29 global $indent;
35 global $indent;
H A DforeachLoopIteratorAggregate.003.phpt10 global $indent;
16 global $indent;
22 global $indent;
28 global $indent;
34 global $indent;
/PHP-5.5/ext/ldap/tests/
H A Dldap_unbind_variation.phpt14 global $user;
15 global $passwd;
16 global $protocol_version;
H A Dldap_set_rebind_proc_basic.phpt14 global $user;
15 global $passwd;
16 global $protocol_version;
/PHP-5.5/ext/standard/tests/class_object/
H A Dget_class_methods_basic_003.phpt36 echo "Accessing I from global scope:\n";
38 echo "Accessing C from global scope:\n";
44 Accessing I from global scope:
49 Accessing C from global scope:
/PHP-5.5/ext/intl/
H A DERROR.CONVENTIONS6 The global error code can be obtained in userland with intl_get_error_code().
11 wrapper function should set the global error code to U_ILLEGAL_ARGUMENT_ERROR).
23 The internal PHP code can set the global last error with:
35 unless the error is due to bad arguments, in which case only the global error
45 The global error and the object error can be SIMULTANEOUSLY set with these
54 Static methods should only set the global error.
61 private intl_error structured and mirror the global intl_get_error_code() and
74 :: Intl functions and methods should reset the global error before doing
82 void intl_error_reset(NULL TSRMLS_DC); /* reset global error */
83 void intl_errors_reset(intl_error* err TSRMLS_DC ); /* reset global and object error */
[all …]
/PHP-5.5/ext/pcre/tests/
H A Dbug44214_2.phpt2 Bug #44214-2 (crash with preg_replace_callback() and global variable)
10 global $array;
H A Dbug44214.phpt2 Bug #44214 (crash with preg_replace_callback() and global variable)
10 global $array;
/PHP-5.5/ext/standard/tests/array/
H A Dbug25359.phpt2 Bug #25359 (array_multisort() does not work in a function if array is global or reference)
8 global $data; // Remove this line to make array_multisort() work

Completed in 92 milliseconds

12345678910