I get no data when download images
问题 so iam trying to download images by this code i successfully download the images but they without any data and corrupted like the images have 0 bytes function get_chapter_images(){ include('simple_html_dom.php'); $url = 'http://localhost/wordpress/manga/manga-name-ain/chapter-4/'; $html = file_get_html($url); $images_url = array(); foreach($html->find('.page-break img') as $e){ $image_links = $e->src; array_push( $images_url, $image_links); } return $images_url; } $images_links = get_chapter