Lines Matching refs:output
10 function http_server_init($socket_string, &$output = null) {
18 if ($output === null) {
19 $output = tmpfile();
20 if ($output === false) {
39 * $output is a stream on which everything sent by clients is written to
41 function http_server($socket_string, array $files, &$output = null) {
43 if (!is_resource($server = http_server_init($socket_string, $output))) {
66 fwrite($output, "\r\n");
69 fwrite($output, "$line\r\n");
81 stream_copy_to_stream($sock, $output, $content_length);
97 if (!is_resource($server = http_server_init($socket_string, $output))) {