Lines Matching refs:function
3 function skipFunction($function): bool {
6 || $function === 'readline'
7 || $function === 'readline_read_history'
8 || $function === 'readline_write_history'
10 || $function === 'exit'
11 || $function === 'die'
13 || $function === 'zend_create_unterminated_string'
14 || $function === 'zend_test_array_return'
15 || $function === 'zend_test_crash'
16 || $function === 'zend_leak_bytes'
18 || (is_string($function) && str_starts_with($function, 'ob_'))
19 || $function === 'output_add_rewrite_var'
20 || $function === 'error_log'
22 || (is_string($function) && str_contains($function, 'connect'))
23 || (is_string($function) && str_starts_with($function, 'snmp'))
24 || (is_array($function) && get_class($function[0]) === mysqli::class
25 && in_array($function[1], ['__construct', 'connect', 'real_connect']))
27 || $function === 'mail'
28 || $function === 'mb_send_mail'
29 || $function === 'pcntl_fork'
30 || $function === 'pcntl_rfork'
31 || $function === 'posix_kill'
32 || $function === 'posix_setrlimit'
33 || $function === 'sapi_windows_generate_ctrl_event'
34 || $function === 'imagegrabscreen'
38 if ($function[0] instanceof SoapServer) {