|
|
|
ดึงurl รูปบนเว็บมาเก็บในaray ทำยังไงคับ ต้องดึงurl รูปบนเว็บมาเก็บในaray ทำยังไงคับ โดยใช้ gular Expressions |
|
|
|
|
|
|
|
อ่าผมก็หาวิธีอยู่เหมือนกันครับที่เดียวกับผมแน่ๆเลยเทสสุดท้าย
|
|
|
|
|
Date :
2010-01-30 17:30:35 |
By :
zandztormz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$str = 'img src="http://static.sanook.com/www/files/firstpage_v1/imgs_event/haiti.gif" http://static.sanook.com/www/icons/new_look.gif ssss http://static.sanook.com/www/icons/intrend.gif sdfasf http://static.sanook.com/www/icons/vdo_new_1.gifdfasdfasdf';
$regex = '/http:\/\/static.sanook.com(\/\w+)+\.(jpe?g|gif|png)/i';
echo 'match count: ', preg_match_all($regex, $str, $match);
echo '<br>';
$arr = $match[0];
foreach($arr as $val)
echo $val, '<br>';
ผมมั่ว regex เอานะคับ ไม่ค่อยถนัด
http://gunner.freetzi.com
|
|
|
|
|
Date :
2010-01-30 17:54:35 |
By :
pjgunner |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคับ
^^"
|
|
|
|
|
Date :
2010-02-02 09:59:56 |
By :
wednezdAy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$str = file_get_contents('http://www.sanook.com/');
$regex = '/http:\/\/fp1.fsanook.com(\/\w+)+\.(jpe?g|gif|png)/i';
echo 'match count: ', preg_match_all($regex, $str, $match);
echo '<br>';
$arr = $match[0];
foreach($arr as $val)
echo $val, '<br>';
|
|
|
|
|
Date :
2010-04-09 23:06:05 |
By :
php |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|