-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
149 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,12 @@ | |
--- | ||
|
||
## jphp-httpserver-ext | ||
> version 1.1.0, created by JPPM. | ||
> version {0}, created by JPPM. | ||
|
||
### Install | ||
``` | ||
jppm add [email protected].0 | ||
jppm add [email protected].1 | ||
``` | ||
|
||
### API | ||
|
@@ -20,6 +20,7 @@ jppm add [email protected] | |
- [`HttpCORSFilter`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpCORSFilter.md) | ||
- [`HttpDownloadFileHandler`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpDownloadFileHandler.md)- _Class HttpDownloadFileHandler_ | ||
- [`HttpGzipFilter`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpGzipFilter.md) | ||
- [`HttpPart`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpPart.md) | ||
- [`HttpRedirectHandler`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpRedirectHandler.md)- _Class HttpDownloadFileHandler_ | ||
- [`HttpResourceHandler`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpResourceHandler.md) | ||
- [`HttpRouteFilter`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpRouteFilter.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,12 @@ | |
--- | ||
|
||
## jphp-httpserver-ext | ||
> версия 1.1.0, создано с помощью JPPM. | ||
> версия {0}, создано с помощью JPPM. | ||
|
||
### Установка | ||
``` | ||
jppm add [email protected].0 | ||
jppm add [email protected].1 | ||
``` | ||
|
||
### АПИ | ||
|
@@ -20,6 +20,7 @@ jppm add [email protected] | |
- [`HttpCORSFilter`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpCORSFilter.ru.md) | ||
- [`HttpDownloadFileHandler`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpDownloadFileHandler.ru.md)- _Class HttpDownloadFileHandler_ | ||
- [`HttpGzipFilter`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpGzipFilter.ru.md) | ||
- [`HttpPart`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpPart.ru.md) | ||
- [`HttpRedirectHandler`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpRedirectHandler.ru.md)- _Class HttpDownloadFileHandler_ | ||
- [`HttpResourceHandler`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpResourceHandler.ru.md) | ||
- [`HttpRouteFilter`](https://github.com/jphp-compiler/jphp/blob/master/exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpRouteFilter.ru.md) | ||
|
60 changes: 60 additions & 0 deletions
60
exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpPart.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# HttpPart | ||
|
||
- **class** `HttpPart` (`php\http\HttpPart`) | ||
- **source** `php/http/HttpPart.php` | ||
|
||
--- | ||
|
||
#### Methods | ||
|
||
- `->`[`readAll()`](#method-readall) | ||
- `->`[`getName()`](#method-getname) | ||
- `->`[`getContentType()`](#method-getcontenttype) | ||
- `->`[`getSubmittedFileName()`](#method-getsubmittedfilename) | ||
- `->`[`getSize()`](#method-getsize) | ||
|
||
--- | ||
# Methods | ||
|
||
<a name="method-readall"></a> | ||
|
||
### readAll() | ||
```php | ||
readAll(): string | ||
``` | ||
|
||
--- | ||
|
||
<a name="method-getname"></a> | ||
|
||
### getName() | ||
```php | ||
getName(): string | ||
``` | ||
|
||
--- | ||
|
||
<a name="method-getcontenttype"></a> | ||
|
||
### getContentType() | ||
```php | ||
getContentType(): string | ||
``` | ||
|
||
--- | ||
|
||
<a name="method-getsubmittedfilename"></a> | ||
|
||
### getSubmittedFileName() | ||
```php | ||
getSubmittedFileName(): string | ||
``` | ||
|
||
--- | ||
|
||
<a name="method-getsize"></a> | ||
|
||
### getSize() | ||
```php | ||
getSize(): int | ||
``` |
60 changes: 60 additions & 0 deletions
60
exts/jphp-httpserver-ext/api-docs/classes/php/http/HttpPart.ru.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# HttpPart | ||
|
||
- **класс** `HttpPart` (`php\http\HttpPart`) | ||
- **исходники** `php/http/HttpPart.php` | ||
|
||
--- | ||
|
||
#### Методы | ||
|
||
- `->`[`readAll()`](#method-readall) | ||
- `->`[`getName()`](#method-getname) | ||
- `->`[`getContentType()`](#method-getcontenttype) | ||
- `->`[`getSubmittedFileName()`](#method-getsubmittedfilename) | ||
- `->`[`getSize()`](#method-getsize) | ||
|
||
--- | ||
# Методы | ||
|
||
<a name="method-readall"></a> | ||
|
||
### readAll() | ||
```php | ||
readAll(): string | ||
``` | ||
|
||
--- | ||
|
||
<a name="method-getname"></a> | ||
|
||
### getName() | ||
```php | ||
getName(): string | ||
``` | ||
|
||
--- | ||
|
||
<a name="method-getcontenttype"></a> | ||
|
||
### getContentType() | ||
```php | ||
getContentType(): string | ||
``` | ||
|
||
--- | ||
|
||
<a name="method-getsubmittedfilename"></a> | ||
|
||
### getSubmittedFileName() | ||
```php | ||
getSubmittedFileName(): string | ||
``` | ||
|
||
--- | ||
|
||
<a name="method-getsize"></a> | ||
|
||
### getSize() | ||
```php | ||
getSize(): int | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters