The example in this article describes the implementation method of automatically renaming files in PHP. Share it with everyone for your reference. The specific method analysis is as follows:
PHP rename file names are often used in the actual development process. For example, when users upload files or some cache files are automatically generated, we need to use the automatic rename function. But generally when we create uploaded files, we use the method of naming the current system time plus a random number. Although this method is feasible, it sometimes does not meet the needs of customers. Some customers require that our file naming method should be automatically serialized like the Windows system. For example, when someone uploads a file named "New Text Document" and someone else uploads a file named "New Text Document", we will use the serial number. The meaning of the name is that the second "New Text Document" will be named "New Text Document (1)" when someone uploads a file with the same name and so on.
Let me share a source code with you:
www.bkjia.com