Home Backend Development PHP Tutorial 求.mp3资料延时批量重命名实例

求.mp3资料延时批量重命名实例

Jun 13, 2016 pm 01:09 PM
key shuffle

求.mp3文件延时批量重命名实例
网站music目录下有10个不规则文件名的.mp3音乐文件,我想让他们自动重命名,重命名规则为使用1~10的随机数,并且每隔5分钟再次用以上规则重命名,最好可以在后台自动运行,请问该怎样实现?
刚接触PHP,还有诸多问题不懂,希望大家以后能多多帮忙。。

------解决方案--------------------

探讨

简单处理
PHP code

$shuffle_num = range(1, 10);
shuffle($shuffle_num);
foreach (glob('tmp/*.mp3') as $key=>$filename){
$newname = 'tmp/'.$shuffle_num[$key].'.mp3';
rename($filename, $newname);
……

------解决方案--------------------
探讨

引用:

简单处理
PHP code

$shuffle_num = range(1, 10);
shuffle($shuffle_num);
foreach (glob('tmp/*.mp3') as $key=>$filename){
$newname = 'tmp/'.$shuffle_num[$key].'.mp3';
rename($f……
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What does the identity attribute in SQL mean? What does the identity attribute in SQL mean? Feb 19, 2024 am 11:24 AM

What is Identity in SQL? Specific code examples are needed. In SQL, Identity is a special data type used to generate auto-incrementing numbers. It is often used to uniquely identify each row of data in a table. The Identity column is often used in conjunction with the primary key column to ensure that each record has a unique identifier. This article will detail how to use Identity and some practical code examples. The basic way to use Identity is to use Identit when creating a table.

How SpringBoot monitors redis Key change events How SpringBoot monitors redis Key change events May 26, 2023 pm 01:55 PM

1. Function Overview Keyspace notification allows clients to receive events that modify Rediskey changes in some way by subscribing to channels or patterns. All commands that modify key keys. All keys that received the LPUSHkeyvalue[value…] command. All expired keys in the db database. Events are distributed through Redis's subscription and publishing functions (pub/sub), so all clients that support subscription and publishing functions can directly use the keyspace notification function without any modifications. Because the current subscription and publishing functions of Redis adopt a fireandforget strategy, if your program

Unpatchable Yubico two-factor authentication key vulnerability breaks the security of most Yubikey 5, Security Key, and YubiHSM 2FA devices Unpatchable Yubico two-factor authentication key vulnerability breaks the security of most Yubikey 5, Security Key, and YubiHSM 2FA devices Sep 04, 2024 pm 06:32 PM

An unpatchable Yubico two-factor authentication key vulnerability has broken the security of most Yubikey 5, Security Key, and YubiHSM 2FA devices. The Feitian A22 JavaCard and other devices using Infineon SLB96xx series TPMs are also vulnerable.All

How to solve the problem of batch deletion of key values ​​in redis How to solve the problem of batch deletion of key values ​​in redis May 31, 2023 am 08:59 AM

Problems encountered: During the development process, you will encounter keys that need to be deleted in batches according to certain rules, such as login_logID (ID is a variable). Now you need to delete data such as "login_log*", but redis itself only has batch query. Command keys for class key values, but there is no command for batch deletion of a certain class. Solution: Query first, then delete, use xargs to pass parameters (xargs can convert pipe or standard input (stdin) data into command line parameters), execute the query statement first, and then remove the queried key value and the original del parameters. delete. redis-cliKEYSkey* (search condition)|xargsr

Java uses the shuffle() function of the Collections class to disrupt the order of elements in the collection. Java uses the shuffle() function of the Collections class to disrupt the order of elements in the collection. Jul 24, 2023 pm 10:25 PM

Java uses the shuffle() function of the Collections class to disrupt the order of elements in the collection. In the Java programming language, the Collections class is a tool class that provides various static methods for operating collections. One of them is the shuffle() function, which can be used to shuffle the order of elements in a collection. This article demonstrates how to use this function and provides corresponding code examples. First, we need to import the Collections class in the java.util package,

How to automatically change wallpaper on iPhone How to automatically change wallpaper on iPhone May 04, 2023 am 11:55 AM

How to Use PhotoShuffle to Automatically Change Wallpapers on iPhone In the iOS 16 update, you can use the Photo Shuffle feature to apply wallpapers that automatically change at your favorite intervals. While its functionality remains the same, this feature can be used in two different ways - one using a featured photo, and the other using a photo you manually select from your gallery. Both options are accessible when applying a wallpaper directly from the Lock screen or using the Settings app. The easiest way to apply a new wallpaper is from the lock screen. First, use FaceID to unlock your phone, but don't go to the home screen yet. To do this, simply press the side button, face your iPhone, and unlock the lock screen.

What functions are used in PHP to randomly shuffle an array? What functions are used in PHP to randomly shuffle an array? May 01, 2024 pm 10:15 PM

There are the following functions in PHP that can shuffle an array randomly: shuffle() directly changes the order of array elements. array_rand() returns a random key, which can rearrange the array order based on the key.

How to determine whether a JSONObject contains a certain key in Java? How to determine whether a JSONObject contains a certain key in Java? May 08, 2023 pm 12:25 PM

Determine whether a KeyJSONObject exists in JSONObjectjsonObj=newJSONObject();jsonObj.put("version","1.0.0");//version number jsonObj.put("encoding","UTF-8");//encoding method Determine whether the vesion attribute exists in jsonObject jsonObj.has("version");//Return true to check whether the k exists in the json string

See all articles