Lines Matching refs:output
10 function http_server_init(&$output = null) {
18 if ($output === null) {
19 $output = tmpfile();
20 if ($output === false) {
43 * $output is a stream on which everything sent by clients is written to
45 function http_server($files, &$output = null) {
47 if (!is_resource($server = http_server_init($output))) {
74 fwrite($output, "\r\n");
77 fwrite($output, "$line\r\n");
89 stream_copy_to_stream($sock, $output, $content_length);
105 if (!is_resource($server = http_server_init($output))) {