APP或者Unity3D在做图片上传的时候,一般都是数据流格式,此时数据流传送的时候,enctype是application/x-www-form-urlencoded,PHP可以通过file_get_contents("php://input")获取(除了在enctype="multipart/form-data"情况下是无法接收到流,其他情况下都可以),额,程序代码如下
04 | file_put_contents ( "hh.gif" , $d [ 'data' ]); |
05 | echo 'username:' . $d [ 'username' ]. '<br />' ; |
06 | echo 'password:' . $d [ 'password' ]. '<br />' ; |
09 | function encode( $params ) { |
11 | foreach ( $params as $k => $v ) { |
13 | $str .= rawurlencode( $k ) . "=" . rawurlencode( $v ); |
14 | if ( $i < count ( $params )) |
21 | $infoary = array ( "username" => "aboc" , "password" => "aboc" , 'data' => $data ); |
22 | $encodestr = encode( $infoary ); |
23 | $http_entity_body = $encodestr ; |
24 | $http_entity_type = 'application/x-www-form-urlencoded' ; |
25 | $http_entity_length = strlen ( $http_entity_body ); |
26 | $host = $_SERVER [ 'HTTP_HOST' ]; |
28 | $path = '/3d/?act=add' ; |
29 | $fp = fsockopen ( $host , $port , $error_no , $error_desc , 30); |
31 | fputs ( $fp , "POST {$path} HTTP/1.1\r\n" ); |
32 | fputs ( $fp , "Host: {$host}\r\n" ); |
33 | fputs ( $fp , "Content-Type: {$http_entity_type}\r\n" ); |
34 | fputs ( $fp , "Content-Length: {$http_entity_length}\r\n" ); |
35 | fputs ( $fp , "Connection: close\r\n\r\n" ); |
36 | fputs ( $fp , $http_entity_body . "\r\n\r\n" ); |
39 | $d .= fgets ( $fp , 4096); |
留下你的看法: