4

の過去の日付がありtextbox、日付が現在の日付よりも大きく、形式が の場合、フォーム送信を検証したい場合dd/mm/yyyy

私のform_validation.phpで:

'add_prod_serv_fact' => array(
    'quantidade_prod'           => array('field' => 'quantidade_prod',          'label' => 'Quantidade',        'rules' => 'required|trim|numeric|greater_than[0]|htmlspecialchars'),
    'desconto_prod'             => array('field' => 'desconto_prod',            'label' => 'Desconto',          'rules' => 'required|trim|numeric|greater_than[-1]|less_than[101]|htmlspecialchars'),
    'date'                      => array('field' => 'date',                     'label' => 'Date',              'rules' => 'required|trim|htmlspecialchars')
)

日付を検証するにはどうすればよいですか?

4

3 に答える 3

6

最初に正規表現で検証できます。次のような関数を書く必要があります

function validate_date_reg($input)
{
   if (preg_match('\d{1,2}/\d{1,2}/\d{4}', $input))
   {
      return true; // it matched, return true
   }
   else
   {
      return false;
   }
}

次のように呼び出します。

if($this->validate_date_reg($this->input->post('some_data')))
{
    // true go ahead......
}

これがお役に立てば幸いです。

于 2013-07-09T04:31:05.887 に答える
3

1) CI コールバックで日付を検証する方法:

「検証システムは、独自の検証関数へのコールバックをサポートしています。これにより、検証クラスを拡張してニーズを満たすことができます。」

あなたの方法では:

$this->form_validation->set_rules('text_date', 'Date', 'trim|exact_length[10]|callback_validate_date');

独自のコールバック関数:

public function validate_date($incoming_date)
{
    //If in dd/mm/yyyy format
    if (preg_match("^\d{2}/\d{2}/\d{4}^", $incoming_date))
    {
        //Extract date into array
        $date_array = explode('/', $incoming_date);

        //If it is not a date
        if(! checkdate($date_array[1], $date_array[0], $date_array[2]))
        {
            $this->form_validation->set_message('validate_date', 'Invalid date');
            return false;
        }
    }
    //If not in dd/mm/yyyy format
    else
    {
        $this->form_validation->set_message('validate_date', 'Invalid date');
        return false;
    }

    return true;
}

2) 2 つの日付を比較する方法:

$date_one = (int) strtotime(str_replace('/', '-', $this->input->post('date_one', true)));
$date_two = (int) strtotime(str_replace('/', '-', $this->input->post('date_two', true)));

if($date_one < $date_two)
{
    echo 'Message';
}
else
{
    echo 'Message';
}
于 2013-07-24T10:04:10.017 に答える
2

これを試してみてください..

you need to down date.js from this url "https://code.google.com/p/datejs/downloads/list"

呼び出しdatefunction()関数フォームonChange()

<script>
    function datefunction()
    {
        var startdate = document.getElementById('date1').value;
        var enddate  = document.getElementById('date2').value;
        // for current date use
        // var enddate  = new Date();

        var d1 = Date.parse(startdate );
        var d2 = Date.parse(enddate  ) ;

        if (d1 > d2) 
        {
            alert ("Start Date cannot be gratter than End Date!");

            return false;
        }
    }
</script>
于 2013-07-09T03:52:09.543 に答える