mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
28 lines
957 B
PHP
28 lines
957 B
PHP
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link http://easyappointments.org
|
|
* @since v1.0.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* Check if a string date is valid for insertion or update
|
|
* to the database.
|
|
*
|
|
* @param string $datetime The given date.
|
|
* @return bool Returns the validation result.
|
|
*
|
|
* @link http://stackoverflow.com/a/8105844/1718162 [SOURCE]
|
|
*/
|
|
function validate_mysql_datetime($datetime)
|
|
{
|
|
$dt = DateTime::createFromFormat('Y-m-d H:i:s', $datetime);
|
|
|
|
return $dt ? TRUE : FALSE;
|
|
}
|