Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
malacoscolicine
/
wp-content
/
plugins
/
popup-maker
/
classes
/
Utils
:
Time.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Time Utility * * @package PUM * @copyright Copyright (c) 2023, Code Atlantic LLC */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Class PUM_Utils_Time */ class PUM_Utils_Time { public static function is_timestamp( $timestamp ) { return ( 1 === preg_match( '~^[1-9][0-9]*$~', $timestamp ) ); } }