mirror of
https://github.com/YGGverse/yggverse.github.io.git
synced 2026-03-31 09:05:41 +00:00
add nex-php release pages
This commit is contained in:
parent
7d0d4dcc28
commit
283a9af725
3 changed files with 43 additions and 1 deletions
25
nex/nex-php/1.1.0.gmi
Normal file
25
nex/nex-php/1.1.0.gmi
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# nex-php 1.1.0
|
||||
|
||||
Implemented optional Server response returned by custom handler
|
||||
|
||||
``` php
|
||||
$server->start(
|
||||
function (
|
||||
string $request,
|
||||
string $connect
|
||||
): ?string
|
||||
{
|
||||
printf(
|
||||
'connection: %s request: %s',
|
||||
$connect,
|
||||
$request
|
||||
);
|
||||
|
||||
return null; // null|string response
|
||||
}
|
||||
);
|
||||
```
|
||||
|
||||
## Links
|
||||
|
||||
=> https://github.com/YGGverse/nex-php/releases/tag/1.1.0 Download nex-php 1.1.0
|
||||
Loading…
Add table
Add a link
Reference in a new issue