Giter Site home page Giter Site logo

How to validade DATE ? about gump HOT 4 CLOSED

wixel avatar wixel commented on June 16, 2024
How to validade DATE ?

from gump.

Comments (4)

ib4 avatar ib4 commented on June 16, 2024

I wrote this function to validate dates and date with timestamps (no AM/PM support):

    /**
     * Validate date, use only 'Y-m-d' or 'Y-m-d H:i:s' format
     *
     * @param string $field
     * @param string $input date or datetime
     *
     * @param null   $param
     *
     * @return mixed
     */
    protected function validate_date($field, $input, $param = null)
    {
        if (!isset($input[$field]) || $input[$field] == '') {
            return;
        }

        $cdate1 = date('Y-m-d', strtotime($input[$field]));
        $cdate2 = date('Y-m-d H:i:s', strtotime($input[$field]));


        if ($cdate1 != $input[$field] && $cdate2 != $input[$field]) {
            return array(
                'field' => $field,
                'value' => $input[$field],
                'rule'  => __FUNCTION__
            );
        }
    }

from gump.

sn avatar sn commented on June 16, 2024

Resno, that's a pretty good solution for this. If you submit a pull request, I'll gladly merge it into the master branch.

from gump.

sn avatar sn commented on June 16, 2024

Guilherme,

@resno has added a date validator that you can use, take a look at:

https://github.com/Wixel/GUMP/blob/master/gump.class.php#L1408

from gump.

guimafx avatar guimafx commented on June 16, 2024

THANK YOU SEAN AND RESNO !

from gump.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.