mirror of
https://github.com/YGGverse/web-api.git
synced 2026-03-31 17:45:30 +00:00
34 lines
No EOL
345 B
Markdown
34 lines
No EOL
345 B
Markdown
# net-api
|
|
|
|
Simple Network Tools API
|
|
|
|
## Install
|
|
|
|
```
|
|
git clone https://github.com/YGGverse/net-api.git
|
|
cd net-api
|
|
composer install
|
|
```
|
|
|
|
## Run
|
|
|
|
```
|
|
cd src/public
|
|
php -S localhost:8080
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Dig
|
|
|
|
#### Single record
|
|
|
|
```
|
|
dig.php?name=php.net&record=A
|
|
```
|
|
|
|
#### Multiple records
|
|
|
|
```
|
|
dig.php?name=php.net&records[]=A&records[]=AAAA
|
|
``` |