제목
×
재생속도 설정
상태 메시지
랜드모아(pc)
|
2008-07-28 23:55:45
|
|
댓글:(2)
조회:7959
|
|
|
|
<?
$buff = Array(); // 결과 저장 배열
$input = '<IMG alt=P41904.jpg src="files/attach/images/304/440/P41904.jpg" editor_component="image_link"><IMG alt=P41899.jpg src="files/attach/images/304/440/P41899.jpg" editor_component="image_link">';
preg_match_all("/<img [^<>]*>/is",$input,$output);
foreach($output[0] as $value) {
$content = $value;
if(eregi("[:space:]*(src)[:space:]*=[:space:]*([^ >;]+)",$content,$regs)) {
$regs[2] = str_replace(Array("'",'"'),"",$regs[2]);
$buff[] = $regs[2];
}
}
echo "<xmp>";
print_r($buff);
echo "</xmp>";
?>
/* 결과 */
Array
(
[0] => files/attach/images/304/440/P41904.jpg
[1] => files/attach/images/304/440/P41899.jpg
)
===============================================================
<?
$input = '<IMG alt=P41904.jpg src="files/attach/images/304/440/P41904.jpg" editor_component="image_link"><IMG alt=P41899.jpg src="files/attach/images/304/440/P41899.jpg" editor_component="image_link">';
preg_match_all('/src=\"(.[^"]+)"/i', $input, $value);
print_r($value[1]);
?>
output :
Array
(
[0] => files/attach/images/304/440/P41904.jpg
[1] => files/attach/images/304/440/P41899.jpg
)
==============================================================
$cnt = preg_match_all('@<img\s[^>]*src\s*=\s*(["\'])([^\s>]+?)\1@i';, $html, $matches);
print_r($matches[2]);
=============================================================== |
|
|
|
|
|
|
|
|
|
정규식예제 |
페이지: 1 / 7
|
|
복수단어 검색은 공백(space)로 구분해 주세요.
|