“file_get_contents con URL” Código de respuesta

Transferir el archivo usando file_get_content

file_get_contents('http://url/to/upload/handler', false, $context);
Nutty Newt

file_get_contents con URL

<?php

$curl_handle=curl_init();
curl_setopt($curl_handle, CURLOPT_URL,'http://###.##.##.##/mp/get?mpsrc=http://mybucket.s3.amazonaws.com/11111.mpg&mpaction=convert format=flv');
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_USERAGENT, 'Your application name');
$query = curl_exec($curl_handle);
curl_close($curl_handle);

?>
Wandering Wolverine

Respuestas similares a “file_get_contents con URL”

Preguntas similares a “file_get_contents con URL”

Más respuestas relacionadas con “file_get_contents con URL” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código