獲取編輯器/富文字第一張圖為縮圖
<?php
// 獲取富文字第一張圖為縮圖
$content = $_POST["editor"];//接收編輯器name的引數
if (preg_match_all("/(src)=([\"|']?)([^ \"'>]+\.(gif|jpg|jpeg|bmp|png))\\2/i", $content, $matches)) {
$str=$matches[3][0];
preg_match('/\/Uploads\/images/', $str);
$str1=substr($str,7);//第一張圖路徑
echo "<img src='$str1' alt=''>";return;
}else{
echo "<img src='1.jpg' alt=''>";return;//編輯器中沒有圖片時用預設圖片
}
?>
//城市站專案程式碼實踐
<?php
$uid = is_signin();//獲取管理員登陸id
//設定獲取編輯器第一張圖片為縮圖
$content = $data['content'];
if (preg_match_all("/(src)=([\"|']?)([^ \"'>]+\.(gif|jpg|jpeg|bmp|png))\\2/i", $content, $matches)) {
$str=$matches[3][0];
preg_match('/\ Uploads\/images/', $str);
$str1=substr($str,7);//第一張圖路徑
$aa = db('admin_attachment')->insertGetId(['uid'=>$uid,'name'=>'文章釋出','model'=>'article','path'=>$str1]);
$data['cover'] = $aa;
}elseif (input('post.cover')==0) {
$data['cover'] = 1;
}
?>
獲取更多資料,進入QQ群:543592003