tao-test/app/vendor/respect/validation/docs/rules/Fibonacci.md

18 lines
317 B
Markdown
Raw Normal View History

2022-08-29 20:14:13 +02:00
# Fibonacci
- `v::fibonacci()`
Validates whether the input follows the Fibonacci integer sequence.
```php
v::fibonacci()->validate(1); // true
v::fibonacci()->validate('34'); // true
v::fibonacci()->validate(6); // false
```
***
See also:
* [PerfectSquare](PerfectSquare.md)
* [PrimeNumber](PrimeNumber.md)