check
This commit is contained in:
parent
c0a85f1500
commit
93804649ac
|
@ -35,7 +35,16 @@
|
||||||
echo $output;
|
echo $output;
|
||||||
|
|
||||||
echo nl2br("\n END OF THE OUTPUT\n");
|
echo nl2br("\n END OF THE OUTPUT\n");
|
||||||
echo "check"
|
echo "check";
|
||||||
|
|
||||||
|
$url = 'https://www.youtube.com/watch?v=GNbTRJHbC4Q';
|
||||||
|
$cmd = 'youtube-dl ' . escapeshellarg($url);
|
||||||
|
exec($cmd, $output, $ret);
|
||||||
|
echo 'output: ';
|
||||||
|
var_export($output);
|
||||||
|
echo "\nret: ";
|
||||||
|
var_export($ret);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue