Ben bir yazı editörü üzerinde çalışıyorum, ben bütün temel görüntü özelliklerini almak istiyorsanız bunu yapmak için önce, html kodu üzerinde takılı tüm görüntülerden küçük oluşturmak istiyorsanız, bu yüzden
Örnek:
$mydomain = 'mysite.com';
$htmlcode = <<<EOD
<p>sample text</p>
<img src='/path/to/my/image.ext' width='120' height='90' />
<hr />
<img src='html://www.mysite.com/some/ther/path/image.ext' /> <!-- no attributes -->
<hr />
<p>blah blah <img src="http://www.notmyserver.com/path/lorem-ipsum.ext" widht='120' height='90' /></p>
EOD;
function get_all_image_attributes($htmlcode){
// some code...
return $images; // array with image src (required), width (if has), heigth (if has)...
}
// then validate (I really need this part)
$images = get_all_image_attributes($htmlcode);
function verify($images,$mydomain){
// code...
return $valid_images;
}
Geçerli bir görüntü (. Jpg,. Jpeg,. Gif,. Png) olacaktır
src = "/ yol / resim.uzantısı"
src = "http://www.mysite.com/path/image.ext"
src = "http://www.mysite.com/some/path/image.ext"
src = "http://mysite.com/some/path/image.ext"
src = "www.mysite.com / yol / resim.uzantısı"
ps.
Küçük oluşturmak için kısmı zaten yapılır, merak etmeyin :)
updated
//I have done the following
$html = str_get_html($html);
$images = $html->find('img');
foreach ($images as $image){
$filename = getfilename($image);
// I would like validate the file if is located in other path,
// or if it contains 'http://[www.]mysite.com/'
if(file_exists(PUBLICPATH.'post_images/'.$filename))
valid_imgs[] = BASEURL.'post_images/'.$filename;
}
function getfilename($full_filename){
$filename = substr( strrchr($full_filename , "/") ,1);
if(!$filename)
$filename = $full_filename;
$filename = preg_replace("/^[.]*/","",$filename);
return $filename;
}