Searched refs:redirect (Results 1 – 9 of 9) sorted by relevance
/PHP-7.4/win32/ |
H A D | sockets.c | 32 SOCKET redirect; in socketpair() local 40 sock[0] = sock[1] = redirect = INVALID_SOCKET; in socketpair() 74 redirect = accept(sock[0],(struct sockaddr*)&address, &size); in socketpair() 75 if (INVALID_SOCKET == redirect) { in socketpair() 80 sock[0] = redirect; in socketpair() 85 closesocket(redirect); in socketpair()
|
/PHP-7.4/ext/standard/tests/general_functions/ |
H A D | proc_open_redirect.phpt | 7 var_dump(proc_open([$php], [['redirect']], $pipes)); 8 var_dump(proc_open([$php], [['redirect', 'foo']], $pipes)); 9 var_dump(proc_open([$php], [['redirect', 42]], $pipes)); 13 $proc = proc_open($cmd, [1 => ['pipe', 'w'], 2 => ['redirect', 1]], $pipes); 20 $proc = proc_open($cmd, [1 => ['file', $fileName, 'w'], 2 => ['redirect', 1]], $pipes); 28 $proc = proc_open($cmd, [1 => $file, 2 => ['redirect', 1]], $pipes); 36 $proc = proc_open($cmd, [2 => ['redirect', 1]], $pipes);
|
/PHP-7.4/ext/standard/tests/http/ |
H A D | http_response_header_01.phpt | 2 $http_reponse_header (no redirect)
|
H A D | http_response_header_02.phpt | 2 $http_reponse_header (redirect)
|
H A D | http_response_header_03.phpt | 2 $http_reponse_header (redirect + not found)
|
/PHP-7.4/ |
H A D | UPGRADING | 373 . proc_open() now supports "redirect" and "null" descriptors. For example: 376 proc_open($cmd, [1 => ['pipe', 'w'], 2 => ['redirect', 1]], $pipes);
|
H A D | php.ini-development | 217 ; You can redirect all of the output of your scripts to a function. For 777 ; http://php.net/cgi.force-redirect 788 ; http://php.net/cgi.redirect-status-env
|
H A D | php.ini-production | 217 ; You can redirect all of the output of your scripts to a function. For 777 ; http://php.net/cgi.force-redirect 788 ; http://php.net/cgi.redirect-status-env
|
/PHP-7.4/sapi/fpm/tests/ |
H A D | tester.inc | 367 $desc = $this->outDesc ? [] : [1 => array('pipe', 'w'), 2 => array('redirect', 1)];
|
Completed in 34 milliseconds