check() 공개 정적인 메소드

Check if email(s) is(are) valid. You can send one or an array of emails.
public static check ( string | array $emails ) : array
$emails string | array
리턴 array
예제 #1
0
파일: EmailTest.php 프로젝트: jbzoo/utils
 /**
  * @dataProvider getEmptyProvider
  * @param $input
  */
 public function testCheckWithEmptyEmails($input)
 {
     is(array(), Email::check($input));
 }