Logo

Date/Time Functions

checkdate date date_add date_create date_create_from_format date_create_immutable date_create_immutable_from_format date_date_set date_default_timezone_get date_default_timezone_set date_diff date_format date_get_last_errors date_interval_create_from_date_string date_interval_format date_isodate_set date_modify date_offset_get date_parse date_parse_from_format date_sub date_sun_info date_sunrise date_sunset date_time_set date_timestamp_get date_timestamp_set date_timezone_get date_timezone_set getdate gettimeofday gmdate gmmktime gmstrftime idate localtime microtime mktime strftime strptime strtotime time timezone_abbreviations_list timezone_identifiers_list timezone_location_get timezone_name_from_abbr timezone_name_get timezone_offset_get timezone_open timezone_transitions_get timezone_version_get

date

Logo statamic/cms statamic/cms
Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Format a Unix timestamp
<?php date(string $format, ?int $timestamp = null): string
<?php     public function handle()

    {

        $from = __DIR__.'/stubs/auth/statamic_auth_tables.php.stub';

        $file = date('Y_m_d_His', time()).'_statamic_auth_tables';

        $to = database_path("migrations/{$file}.php");



        $contents = File::get($from);
src/Console/Commands/AuthMigration.php
<?php     public function handle()

    {

        File::put(

            database_path().'/migrations/'.date('Y_m_d_His').'_create_users_tables.php',

            File::get(__DIR__.'/stubs/create_users_tables.php.stub')

        );

    }
src/Console/Commands/MakeUserMigration.php