/php-src/Zend/tests/ |
H A D | bug70918.phpt | 42 string(52) "Cannot access "static" when no class scope is active" 43 string(52) "Cannot access "parent" when no class scope is active" 44 string(50) "Cannot access "self" when no class scope is active" 45 string(52) "Cannot access "static" when no class scope is active" 46 string(52) "Cannot access "static" when no class scope is active" 47 string(52) "Cannot access "static" when no class scope is active"
|
H A D | self_method_or_prop_outside_class.phpt | 33 Cannot access "self" when no class scope is active 34 Cannot access "self" when no class scope is active 35 Cannot access "self" when no class scope is active 36 Cannot access "self" when no class scope is active
|
H A D | bug71221.phpt | 8 Fatal error: Uncaught Error: Cannot call get_defined_vars() dynamically in [no active file]:0 12 thrown in [no active file] on line 0
|
H A D | bug51827.phpt | 19 … Uncaught ArgumentCountError: explode() expects at least 2 arguments, 0 given in [no active file]:0 23 thrown in [no active file] on line 0
|
/php-src/ext/session/tests/user_session_module/ |
H A D | sessionhandler_open_001.phpt | 39 Session is not active 40 Session is not active 41 Session is not active 42 Session is not active
|
H A D | bug69111.phpt | 32 Session is not active 33 Session is not active 34 Session is not active
|
/php-src/ext/session/tests/ |
H A D | session_ini_set.phpt | 121 Warning: ini_set(): Session ini settings cannot be changed when a session is active (started from %… 124 Warning: ini_set(): Session ini settings cannot be changed when a session is active (started from %… 127 Warning: ini_set(): Session ini settings cannot be changed when a session is active (started from %… 131 Warning: ini_set(): Session ini settings cannot be changed when a session is active (started from %… 134 Warning: ini_set(): Session ini settings cannot be changed when a session is active (started from %… 137 Warning: ini_set(): Session ini settings cannot be changed when a session is active (started from %… 140 Warning: ini_set(): Session ini settings cannot be changed when a session is active (started from %… 143 Warning: ini_set(): Session ini settings cannot be changed when a session is active (started from %… 146 Warning: ini_set(): Session ini settings cannot be changed when a session is active (started from %… 149 Warning: ini_set(): Session ini settings cannot be changed when a session is active (started from %… [all …]
|
H A D | session_status.phpt | 2 Test session_status() function : active, none 12 echo "*** Testing session_status() : active, none\n"; 23 *** Testing session_status() : active, none
|
H A D | session_start_variation1.phpt | 28 Notice: session_start(): Ignoring session_start() because a session is already active (started from… 31 Notice: session_start(): Ignoring session_start() because a session is already active (started from… 34 Notice: session_start(): Ignoring session_start() because a session is already active (started from… 37 Notice: session_start(): Ignoring session_start() because a session is already active (started from…
|
/php-src/main/ |
H A D | output.c | 184 OG(active) = NULL; in php_output_deactivate() 256 if (OG(active) && (OG(active)->flags & PHP_OUTPUT_HANDLER_FLUSHABLE)) { in php_output_flush() 275 if (OG(active)) { in php_output_flush_all() 287 if (OG(active) && (OG(active)->flags & PHP_OUTPUT_HANDLER_CLEANABLE)) { in php_output_clean() 303 if (OG(active)) { in php_output_clean_all() 361 if (OG(active)) { in php_output_get_contents() 363 ZVAL_STRINGL(p, OG(active)->buffer.data, OG(active)->buffer.used); in php_output_get_contents() 378 if (OG(active)) { in php_output_get_length() 392 return OG(active); in php_output_get_active_handler() 1328 if (!OG(active)) { in PHP_FUNCTION() [all …]
|
/php-src/ext/standard/tests/general_functions/ |
H A D | register_shutdown_functions_without_previous_call_frame_01.phpt | 11 …caught Error: Cannot call forward_static_call() when no class scope is active in [no active file]:0 15 thrown in [no active file] on line 0
|
H A D | register_shutdown_functions_without_previous_call_frame_02.phpt | 11 Fatal error: Uncaught Error: Cannot call func_get_args() dynamically in [no active file]:0 15 thrown in [no active file] on line 0
|
H A D | register_shutdown_functions_without_previous_call_frame_03.phpt | 11 Fatal error: Uncaught Error: Cannot call func_num_args() dynamically in [no active file]:0 15 thrown in [no active file] on line 0
|
H A D | register_shutdown_functions_without_previous_call_frame_04.phpt | 11 …caught ArgumentCountError: func_get_arg() expects exactly 1 argument, 0 given in [no active file]:0 15 thrown in [no active file] on line 0
|
/php-src/sapi/fpm/fpm/ |
H A D | fpm_scoreboard.c | 101 int idle, int active, int lq, int lq_len, int requests, int max_children_reached, in fpm_scoreboard_update_commit() argument 113 if (active >= 0) { in fpm_scoreboard_update_commit() 114 scoreboard->active = active; in fpm_scoreboard_update_commit() 144 if (scoreboard->active + active > 0) { in fpm_scoreboard_update_commit() 145 scoreboard->active += active; in fpm_scoreboard_update_commit() 147 scoreboard->active = 0; in fpm_scoreboard_update_commit() 169 if (scoreboard->active > scoreboard->active_max) { in fpm_scoreboard_update_commit() 170 scoreboard->active_max = scoreboard->active; in fpm_scoreboard_update_commit() 182 int idle, int active, int lq, int lq_len, int requests, int max_children_reached, in fpm_scoreboard_update() argument 187 …idle, active, lq, lq_len, requests, max_children_reached, slow_rq, memory_peak, action, scoreboard… in fpm_scoreboard_update()
|
H A D | fpm_systemd.c | 19 int active=0, idle=0; in fpm_systemd() local 24 active += wp->scoreboard->active; in fpm_systemd() 40 …active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_in… in fpm_systemd()
|
H A D | fpm_status.h | 13 int active; member 23 void fpm_status_update_activity(struct fpm_shm_s *shm, int idle, int active, int total, unsigned cu…
|
H A D | fpm_scoreboard.h | 59 int active; member 78 void fpm_scoreboard_update_commit(int idle, int active, int lq, int lq_len, int requests, int max_c… 79 void fpm_scoreboard_update(int idle, int active, int lq, int lq_len, int requests, int max_children…
|
/php-src/ext/curl/tests/ |
H A D | curl_multi_segfault.phpt | 33 $active = null; 36 $mrc = curl_multi_exec($cmh, $active); 40 while ($active && $mrc == CURLM_OK) { 43 $mrc = curl_multi_exec($cmh, $active);
|
H A D | curl_pause_001.phpt | 36 $status = curl_multi_exec($mh, $active); 38 if ($active) { 42 } while ($active && $status == CURLM_OK);
|
H A D | curl_copy_handle_variation4.phpt | 28 $status = curl_multi_exec($mh, $active); 29 if ($active) { 32 } while ($active && $status == CURLM_OK);
|
H A D | bug71523.phpt | 26 curl_multi_exec($mh, $active); 27 } while ($active);
|
/php-src/sapi/phpdbg/ |
H A D | phpdbg_out.c | 135 if (PHPDBG_G(err_buf).active && type != P_STDOUT && type != P_STDERR) { in phpdbg_vprint() 169 PHPDBG_API void phpdbg_activate_err_buf(bool active) { in phpdbg_activate_err_buf() argument 170 PHPDBG_G(err_buf).active = active; in phpdbg_activate_err_buf() 176 int errbuf_active = PHPDBG_G(err_buf).active; in phpdbg_output_err_buf() 182 PHPDBG_G(err_buf).active = 0; in phpdbg_output_err_buf() 188 PHPDBG_G(err_buf).active = errbuf_active; in phpdbg_output_err_buf()
|
/php-src/ext/standard/tests/assert/ |
H A D | assert_basic4.phpt | 4 assert.active = 0 19 echo "Initial values: ini.get(\"assert.active\") => [".ini_get("assert.active")."]\n"; 25 Deprecated: PHP Startup: assert.active INI setting is deprecated in Unknown on line 0 50 Initial values: ini.get("assert.active") => [0]
|
/php-src/Zend/tests/exceptions/ |
H A D | exception_009.phpt | 28 …or: Uncaught Error: Object of class stdClass could not be converted to string in [no active file]:0 32 thrown in [no active file] on line 0
|