本文章来给大家列举一些常用的php 正则提取文章中的图片,并替换、移动图片目录代码,希望此文章对大家会有所帮助。
上传图片时,上传的图片并没有全部用到,那么可以设置上传时只存到临时文件夹里面,文章发布的时候把真正用到的图片移动到有用的目录里,这样定期清理无用目录就可以了。
<?php //转移临时文件夹中的图片 $imgssss = preg_match_all("/linshi/[^\s\'\"]+.jpg|png|gif|jpeg{1}/ui", $content, $imgss); $i = 1; foreach ($imgss as $aimg) { if (is_string($aimg)) { if (file_exists($aimg)) { $newdir = "upload/" . date("ymdhis") . "/"; if (!file_exists($newdir)) { mkdir($newdir, 0755, true); } $newname = $newdir . date("ymdhis") . $i . "." . pathinfo($aimg, PATHINFO_EXTENSION); rename($aimg, $newname); $content = str_replace($aimg, $newname, $content); } $i++; } elseif (is_array($aimg)) { foreach ($aimg as $imga) { if (file_exists($imga)) { $newdir = "upload/" . date("ymdhis") . "/"; if (!file_exists($newdir)) { mkdir($newdir, 0755, true); } $newname = $newdir . date("ymdhis") . $i . "." . pathinfo($imga, PATHINFO_EXTENSION); rename($imga, $newname); $content = str_replace($imga, $newname, $content); } $i++; } } } ?>
如果只是移动单张图片比较简单:
<?php $newdir = "upload/" . date("ymdhis") . "/"; if (!file_exists($newdir)) { mkdir($newdir, 0755, true); } $newname = $newdir . "s_" . date("ymdhis") . "." . pathinfo($upimgurl, PATHINFO_EXTENSION); rename($upimgurl, $newname); ?>
教程网址:
欢迎收藏∩_∩但请保留本文链接。
陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章
刺客信條陰影:貝殼謎語解決方案
3 週前ByDDD
Windows 11 KB5054979中的新功能以及如何解決更新問題
2 週前ByDDD
在哪裡可以找到原子中的起重機控制鑰匙卡
3 週前ByDDD
節省R.E.P.O.解釋(並保存文件)
1 個月前By尊渡假赌尊渡假赌尊渡假赌
刺客信條陰影 - 如何找到鐵匠,解鎖武器和裝甲定制
4 週前ByDDD

熱工具

PhpStorm Mac 版本
最新(2018.2.1 )專業的PHP整合開發工具

WebStorm Mac版
好用的JavaScript開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

SublimeText3 Linux新版
SublimeText3 Linux最新版

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。