$obj=M("News");
$info=$obj->where('id=1')->find();
//方法 1************
$soContent = $info['コンテンツ'];
$soImages = '~
]* />~';
preg_match_all( $soImages, $soContent, $thePics );
$allPics = count($thePics[0]);
preg_match('/
ダンプ($thePics);
if( $allPics> 0 ){
echo "
";//取得した画像の名前
}
他に{
エコー「写真がありません」;
}
//**************
$soContent = $info['コンテンツ'];
$soImages = '~
]* />~';
preg_match_all( $soImages, $soContent, $thePics );
$allPics = count($thePics[0]);
ダンプ($thePics);
if( $allPics> 0 ){
Echo $thePics[0][0] //Img 属性全体を取得します
;
} その他 {
エコー「写真がありません」;
}
//******************
$soImages = '~
]* />~';
$str=$info['コンテンツ'];
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['コンテンツ'];
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 に置き換えます。*/
エコー $img_path;