예제 #1
0
파일: StrTest.php 프로젝트: laradic/support
 public function testCanCheckIfIsIp()
 {
     $this->assertTrue(Str::isIp('192.168.1.1'));
     $this->assertFalse(Str::isIp('foobar'));
 }