Я ищу ссылки с сайта с этим кодом.
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"http://example.com");
curl_setopt($ch, CURLOPT_TIMEOUT, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$result=curl_exec ($ch);
curl_close ($ch);
// search the results from the starting site
if( $result ){
preg_match_all('/<a href="(http:\/\/www.[^0-9]+.pdf?)"/', $result, $output, PREG_SET_ORDER );
foreach($output as $item ){
print_r($item );
}
}
copy($item, 'file.pdf');
?>
только одна PDF-ссылка, которая читается. тогда мне нужен код для загрузки PDF-файлов, которые предоставляют ссылки в php. функция копирования не работает.
спасибо:)