-
Notifications
You must be signed in to change notification settings - Fork 371
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Made websockets.php compatible with PHP8 #131
Comments
Instead of for example: |
Agreed, I changed to spl_object_id. Had print_r in for debugging. `<?php //require_once('./daemonize.php'); abstract class WebSocketServer {
} |
Getting problems with this on PHP 8, in that suddenly connections start dropping and won't reconnect. |
thanks for this update |
thank you |
PHP Deprecated: Creation of dynamic property WebSocketUser::$requestedResource is deprecated in websockets.php on line 235 |
`<?php
//require_once('./daemonize.php');
require_once('users.php');
abstract class WebSocketServer {
}
?>`
The text was updated successfully, but these errors were encountered: