$obj=M("ニュース");
$info=$obj->where('id=1')->find();
//方法 1************
$soContent = $info['content'];
$soImages = '~]* />~';
preg_match_all( $soImages, $soContent, $thePics );
$allPics = count($thePics[0]);
preg_match('/
dump($thePics);
if( $allPics> 0){
echo "< img src = '"。$ match [1]。 "' title = '"。$ match [1]。 "'>"; //取得した画像の名前は
}
その他 {
エコー「写真がありません」;
}
//**************
$soContent = $info['content'];
$soImages = '~]* />~';
preg_match_all( $soImages, $soContent, $thePics );
$allPics = count($thePics[0]);
dump($thePics);
if( $allPics> 0){
echo $thePics[0][0] //Img 属性全体を取得します ;
} else {
エコー「写真がありません」;
}
//**************
$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 に置き換えます */
echo $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;
|