The API, I'm trying to implement requires the upload of XML file, containing the commands. The straightforward way to do this is to generate the content of the file, write it on the file system and upload it with curl to the web server.
Ben başarmak için çalışıyorum php geçici protokol işleyicisi kullanarak yazma bölümünü atlamak etmektir. Örnek kod aşağıda:
<?php
$fp = fopen("php://temp", "r+");
$request = 'some xml here';
fwrite($fp, $request);
rewind($fp);
$input_stat = fstat($fp);
$size = $input_stat['size'];
$url = "http://example.com/script.php";
$ch = curl_init();
$filename = $_POST[cert_file] ;
$data['file'] = "@xml.xml";
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST,1);
curl_setopt($ch,CURLOPT_POSTFIELDS,$data);
curl_setopt($ch,CURLOPT_INFILESIZE,$size);
curl_setopt($ch,CURLOPT_INFILE,$fp);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
$result = curl_exec($ch);
$error = curl_error($ch);
echo 'sonuç:'.$result."\n";
echo 'error:'.$error."\n";
curl_close($ch);
?>
Unfortunately this doesn't work. Tcpdump shows that no request is being send. Update: The result I get is:
sonuç:
error: formpost veri oluşturma başarısız oldu
Herkes PHP ile anında dosya olarak metni yüklemek için nasıl bir ipucu var mı?