forked from mirrors/easyappointments
18 lines
527 B
PHP
18 lines
527 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* 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;
|
||
|
}
|
||
|
|
||
|
/* End of file data_validation_helper.php */
|
||
|
/* Location: ./application/helpers/data_validation_helper.php */
|