Skip to content

Commit 423c8b2

Browse files
author
Wazabii
committed
Guide
1 parent eb03266 commit 423c8b2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ Inp::value("Lorem ipsum dolor")->length(1);
2424
```php
2525
Inp::value("Lorem ipsum dolor")->length(1, 160);
2626
```
27-
### check if is valid email
27+
### Check if is valid email
2828
```php
2929
Inp::value("[email protected]")->email();
3030
```
31-
### check if is valid phone
31+
### Check if is valid phone
3232
Will allow only numbers and some characters like (”-”, ”+” and ” ”).
3333
```php
3434
Inp::value("+46709676040")->phone();
@@ -61,9 +61,9 @@ Inp::value("2022/02/13 14:15")->date(”Y/m/d H:i”);
6161
```php
6262
Inp::value("2022/02/13 - 2022/02/26")->date(”Y/m/d”);
6363
```
64-
### Check if persons is at least 18 years old or more.
64+
### Check if persons is at least 18 years old or older.
6565
```php
66-
Inp::value("2001/05/22")->age(”18”);
66+
Inp::value("1988-05-22")->age(”18”);
6767
```
6868
### Check if is a valid domain name
6969
```php

0 commit comments

Comments
 (0)