You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ Also it will be initialized when you call `PhpConsole\Handler::getInstance()` or
76
76
77
77
### Communication protocol
78
78
79
-
PHP Console uses headers to communicate with client, so `PhpConsole\Connector::getInstance()` or `PhpConsole\Handler::getInstance()` must be called before any output. If headers are sent before script shut down or PHP Console response package size is out of web-server headers size limit, then PHP Console will store response data in [PhpConsole\Storage](src/PhpConsole/Storage.php) implementation and send it to client in STDOUT, in additional HTTP request. So there is no limits in PHP Console response package size.
79
+
PHP Console uses headers to communicate with client, so `PhpConsole\Connector::getInstance()` or `PhpConsole\Handler::getInstance()` must be called before any output. If headers are sent before script shut down or PHP Console response package size is out of web-server headers size limit, then PHP Console will store response data in [PhpConsole\Storage](src/PhpConsole/Storage.php) implementation and send it to client in STDOUT, in additional HTTP request. So there is no limit in PHP Console response package size.
80
80
81
81
### Troubleshooting with $_SESSION handler overridden in some frameworks
82
82
@@ -113,7 +113,7 @@ PhpConsole server library is optimized for lazy initialization only for clients
113
113
114
114
$connector->setPassword('yohoho123', true);
115
115
116
-
Clients will need to enter password to get access to PHP Console server data. All passwords are stored on client as SHA-256 hashes. Second argument says that PHP Console authorization token will depends on client IP.
116
+
Clients will need to enter a password to get access to PHP Console server data. All passwords are stored on client as SHA-256 hashes. Second argument says that the PHP Console authorization token will depend on the client IP.
117
117
118
118
### SSL only connection mode
119
119
@@ -131,7 +131,7 @@ So all PHP Console clients will be automatically redirected to HTTPS.
131
131
132
132
There is a [PhpConsole\Handler](src/PhpConsole/Handler.php) class that initializes PHP errors & exceptions handlers and provides the next features:
133
133
134
-
* Handle PHP errors(+fatal & memory limit errors) and exceptions.
134
+
* Handle PHP errors(+fatal & memory limit errors) and exceptions.
135
135
* Ignore repeated errors.
136
136
* Call previously defined errors and exceptions handlers.
137
137
* Handle caught exceptions using `$handler->handleException($exception)`.
0 commit comments