搜索
首页php教程php手册php 正则提取文章中的图片,并替换、移动图片目录

本文章来给大家列举一些常用的php 正则提取文章中的图片,并替换、移动图片目录代码,希望此文章对大家会有所帮助。

上传图片时,上传的图片并没有全部用到,那么可以设置上传时只存到临时文件夹里面,文章发布的时候把真正用到的图片移动到有用的目录里,这样定期清理无用目录就可以了。

<?php
//转移临时文件夹中的图片
$imgssss = preg_match_all("/linshi/[^\s\&#39;\"]+.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

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

VSCode Windows 64位 下载

VSCode Windows 64位 下载

微软推出的免费、功能强大的一款IDE编辑器

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)