Benim görüntüler için bir yeniden boyutlandırma komut dosyası kullanmak istiyorum (Timthumb). Ben ilk görüntü bir yazı bulunan veritabanından çekin ve komut için ona yol eklemek yanı sıra bazı ekstra talimatlar çalışıyorum:
<?php
$content = $post->post_content;
preg_match_all('/src=\"https?:\/\/[\S\w]+\"/i', $content, $matches, PREG_SET_ORDER);
foreach($matches as $e)
echo '<img src="http://site/scripts/timthumb.php?'.$e[0].'&h=320&w=214&zc=1" title="" alt="">';
{
}
?>
Bu tüm ihtiyacım yankılanan edilirken, etiketi, görüntünün yolunu (Ben görüntüyü algılamak gerekir aynı çift tırnak) eksik bazı çift tırnak ortasında, ekliyor:
<img src="http://site/scripts/timthumb.php?src="http://site/images/image.jpg"&h=320&w=214&zc=1" title="" alt="">
Yani benim sorular şunlardır:
- How would you do to remove those double quotes (while I need them in a first moment to search for a pattern) ?
- And, how would you do to pull only the first image in the post ?
Herhangi bir giriş için çok teşekkürler