이 기사의 예에서는 PHP에서 기사 내용의 첫 번째 그림을 얻는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
PHP를 사용하여 기사 내용의 첫 번째 그림을 얻는 방법은 매우 간단합니다. 가장 일반적으로 사용되는 방법은 정규식을 사용하는 것입니다. 관심 있는 친구는 다음 코드를 참조할 수 있습니다.
다음은 기사의 첫 번째 이미지를 선택하는 코드입니다.
$obj=M("News");
$info=$obj->where('id=1')->find();
//방법 1************
$soContent = $info['content'];
$soImages = '~
]* />~';
preg_match_all( $soImages, $soContent, $thePics );
$allPics = 개수($thePics[0]);
preg_match('/
/i',$thePics[0][0],$match);
덤프($thePics);
if( $allPics> 0 ){
echo "";//얻은 이미지 이름
}
그렇지 않으면 {
echo "사진 없음";
}
//**************
$soContent = $info['content'];
$soImages = '~]* />~';
preg_match_all( $soImages, $soContent, $thePics );
$allPics = 개수($thePics[0]);
덤프($thePics);
if( $allPics> 0 ){
Echo $thePics[0][0]; //전체 Img 속성 획득
} 그 밖의 {
echo "사진 없음";
}
//****************
$soImages = '~]* />~';
$str=$info['content'];
preg_match_all($soImages,$str,$ereg);//정규식은 전체 이미지를 얻습니다
$img=$ereg[0][0];//사진
$p="#src=('|")(.*)('|")#isU";//정규식
preg_match_all($p, $img, $img1);
$img_path =$img1[2][0];//첫 번째 이미지 경로 가져오기
if(!$img_path){
$img_path="images/nopic.jpg";
} //뉴스에 사진이 없으면 기본 nopic.jpg로 대체합니다.*/
에코 $img_path;
//***************88
$str=$info['content'];
preg_match_all("//isU",$str,$ereg);//정규식은 전체 이미지를 캡처합니다
$img=$ereg[0][0];//사진
$p="#src=('|")(.*)('|")#isU";//정규식
preg_match_all($p, $img, $img1);
$img_path =$img1[2][0];//첫 번째 이미지 경로 가져오기
if(!$img_path){
$img_path="images/nopic.jpg";
} //뉴스에 사진이 없으면 기본 nopic.jpg로 대체합니다.*/
echo $img_path;
이 기사가 모든 사람의 PHP 프로그래밍 설계에 도움이 되기를 바랍니다.