php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "filemtime"

What are the key PHP functions or techniques to consider when sorting images by date?

When sorting images by date in PHP, you can use the `filemtime()` function to get the last modified timestamp of each image file. You can then sort th...

How can you optimize the process of checking for file existence in PHP to improve performance?

Checking for file existence in PHP can be optimized for performance by using the `file_exists()` function instead of `is_file()` or `filemtime()`. Thi...

How can PHP be used to sort image files based on their modification time and display the newest one?

To sort image files based on their modification time and display the newest one, we can use PHP's `glob()` function to get a list of image files in a...

Are there any specific PHP functions or libraries that can streamline the process of sorting files by modification date?

To streamline the process of sorting files by modification date in PHP, you can use the `glob()` function to get a list of files in a directory, then...

How can PHP be used to extract the last modified date of a page?

To extract the last modified date of a page using PHP, you can use the `filemtime()` function to get the timestamp when the file was last modified. Yo...

Showing 41 to 45 of 152 results

‹ 1 2 ... 6 7 8 9 10 11 12 ... 30 31 ›
PHP.ORG

A free knowledge base for PHP developers. Open to all.

Legal

  • About
  • Contact / Imprint
  • Terms
  • FAQ

© 2025 php.org. All rights reserved.