How to post a file content with wget in a post variable?

前端 未结 1 1330
既然无缘
既然无缘 2021-01-13 02:14

I have a very simple php script :


I\'m trying to post the conte

相关标签:
1条回答
  • 2021-01-13 02:26

    Do you really need wget? Actually upon reading the wget man page ... wget can't do what you want it to do.

    You can use curl

    curl -F"operation=upload" -F"file=@myfile" http://localhost:9000/index.php
    

    Get the file with:

    <?php
    $uploadfile = '/tmp/' . basename($_FILES['file']['name']);
    move_uploaded_file($_FILES['file']['tmp_name'], $uploadfile);
    $content = file_get_contents($uploadfile);
    ?>
    
    0 讨论(0)
提交回复
热议问题