Answers for "curl get url file type"

-2

curl get url https

curl -k https://localhost:44344/xxxxx
Posted by: Guest on January-08-2021
0

CURL URL UPLOAD

<?php
// You can not use any http url for the file path at curl. You have to use local file. So first download the file into a temporary directory.


file_put_contents("/var/tmp/xyz/output.jpg", file_get_contents("https://www.google.com/images/srpr/logo11w.png"));

//Then use this temporary file into your curl:



'image' => '@/var/tmp/xyz/output.jpg'
??
Posted by: Guest on August-19-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language