[mw_shl_code=php,true]<?php
/** * [Discuz!] (C)2001-2099 Comsenz Inc. * Dit is GEEN freeware, het gebruik is onderhevig aan de licentievoorwaarden
* * $Id: function_filesock.php 34441 2014-04-29 07:47:26Z nemohou $ */
if(!defined('IN_DISCUZ')) { exit('Toegang geweigerd');
}
functie _dfsockopen($url, $limit = 0, $post = '', $cookie = '', $bysocket = ONWAAR, $ip = '', $timeout = 15, $block = WAAR, $encodetype = 'URLENCODE', $allowcurl = WAAR, $position = 0, $files = array( )) { $return = ''; $matches = parse_url($url); $scheme = $matches['schema']; $host = $matches['host']; $path = $matches['pad'] ? $matches['pad']. ($matches['query'] ? '?'. $matches['query']: '') : '/'; $port = !empty($matches['port']) ? $matches['port'] : ($scheme == 'http' ? '80' : ''); $boundary = $encodetype == 'URLENCODE' ? '' : willekeurig(40);
als($post) { als(!is_array($post)) { parse_str($post, $post); } _format_postkey($post, $postnew); $post = $postnew; } if(function_exists('curl_init') & & function_exists('curl_exec') & $allowcurl) { $ch = curl_init(); $httpheader = array(); als($ip) { $httpheader[] = "Presentator: ".$host; } als($httpheader) { curl_setopt($ch, CURLOPT_HTTPHEADER, $httpheader); } curl_setopt($ch, CURLOPT_URL, $scheme.'://'.( $ip? $ip: $host). ($port? ':'.$port : '').$path); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, onwaar); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, onwaar); curl_setopt($ch, CURLOPT_RETURNTRANSFER, waar); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, waar); curl_setopt($ch, CURLOPT_HEADER, 1); als($post) { curl_setopt($ch, CURLOPT_POST, 1); if($encodetype == 'URLENCODE') { curl_setopt($ch, CURLOPT_POSTFIELDS, $post); } anders { foreach($post als $k => $v) { if(isset($files[$k])) { $post[$k] = '@'.$files[$k]; } } foreach($files als $k => $file) { if(!isset($post[$k]) & file_exists($file)) { $post[$k] = '@'.$file; } } curl_setopt($ch, CURLOPT_POSTFIELDS, $post); } } als($cookie) { curl_setopt($ch, CURLOPT_COOKIE, $cookie); } curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); $data = curl_exec($ch); $status = curl_getinfo($ch); $errno = curl_errno($ch); curl_close($ch); if($errno || $status['http_code'] != 200) { terugkeren; } anders { $GLOBALS['filesockheader'] = substr($data, 0, $status['header_size']); $data = substr($data, $status['header_size']); Terug !$limit ? $data : substr($data, 0, $limit); } }
als($post) { if($encodetype == 'URLENCODE') { $data = http_build_query($post); } anders { $data = ''; foreach($post als $k => $v) { $data .= "--$boundary\r\n"; $data .= 'Inhoud-Dispositie: vorm-data; naam="'.$k.'"'. (isset($files[$k]) ? '; filename="'.basename($files[$k]).'"; Inhoudstype: applicatie/octet-stream' : '')." \r\n\r\n"; $data .= $v." \r\n"; } foreach($files als $k => $file) { if(!isset($post[$k]) & file_exists($file)) { als($fp = @fopen($file, 'r')) { $v = fread($fp, bestandsgrootte($file)); fclose($fp); $data .= "--$boundary\r\n"; $data .= 'Inhoud-Dispositie: vorm-data; naam="'.$k.'"; filename="'.basename($file).'"; Inhoudstype: applicatie/octet-stream'." \r\n\r\n"; $data .= $v." \r\n"; } } } $data .= "--$boundary\r\n"; } $out = "POST $path HTTP/1.0\r\n"; $header = "Accepteer: */*\r\n"; $header .= "Accepte-Taal: zh-cn\r\n"; $header .= $encodetype == 'URLENCODE' ? "Content-Type: application/x-www-form-urlencoded\r\n" : "Content-Type: multipart/form-data; grens=$boundary\r\n"; $header .= 'Inhoud-Lengte: '.strlen($data)." \r\n"; $header .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n"; $header .= "Host: $host:$port\r\n"; $header .= "Verbinding: Close\r\n"; $header .= "Cache-Control: no-cache\r\n"; $header .= "Cookie: $cookie\r\n\r\n"; $out .= $header; $out .= $data; } anders { $out = "GET $path HTTP/1.0\r\n"; $header = "Accepteer: */*\r\n"; $header .= "Accepte-Taal: zh-cn\r\n"; $header .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n"; $header .= "Host: $host:$port\r\n"; $header .= "Verbinding: Close\r\n"; $header .= "Cookie: $cookie\r\n\r\n"; $out .= $header; }
$fpflag = 0; als(!$fp = @fsocketopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout)) { $context = array( 'http' => array( 'methode' => $post ? 'POST': 'GA', 'header' => $header, 'content' => $post, 'time-out' => $timeout, ), ); $context = stream_context_create($context); $fp = @fopen($scheme.'://'.( $ip? $ip : $host).':'.$port.$path, 'b', vals, $context); $fpflag = 1; }
als(!$fp) { return ''; } anders { stream_set_blocking($fp, $block); stream_set_timeout($fp, $timeout); @fwrite($fp, $out); $status = stream_get_meta_data($fp); als(!$status['timed_out']) { terwijl (!feof($fp) && !$fpflag) { $header = @fgets($fp); $headers .= $header; als($header && ($header == "\r\n" || $header == "\n")) { pauze; } } $GLOBALS['filesockheader'] = $headers;
als($position) { for($i=0; $i<$position; $i++) { $char = fgetc($fp); als($char == "\n" && $oldchar != "\r") { $i++; } $oldchar = $char; } }
als($limit) { $return = stream_get_contents($fp, $limit); } anders { $return = stream_get_contents($fp); } } @fclose($fp); keer $return terug; }
}
functie _format_postkey($post, &$result, $key = '') { foreach($post als $k => $v) { $_k = $key ? $key.' ['.$k.']' : $k; als(is_array($v)) { _format_postkey($v, $result, $_k); } anders { $result[$_k] = $v; } }
}
?>[/mw_shl_code]
|