reasonableframework/helper/isemail.lnk.php

15 lines
278 B
PHP
Raw Normal View History

2018-03-21 02:10:51 +00:00
<?php
/**
* @file isemail.lnk.php
* @date 2018-03-02
* @author Go Namhyeon <gnh1201@gmail.com>
* @brief IsEmail library linker
*/
2019-02-26 02:39:32 +00:00
if(check_valid_function("is_email")) {
2018-03-21 02:24:15 +00:00
$inc_file = "./vendor/isemail/is_email.php";
if(file_exists($inc_file)) {
include($inc_file);
}
2018-03-21 02:10:51 +00:00
}