Skip to content
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

Add stream_socket_client’s stub #3846

Open
wants to merge 1 commit into
base: 2.1.x
Choose a base branch
from

Conversation

MatTheCat
Copy link

* @param int $error_code
* @param-out int $error_code
* @param string $error_message
* @param-out string $error_message
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What are these set to if the call does not fail?

Copy link
Author

@MatTheCat MatTheCat Mar 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

$error_code will be zero and $error_message an empty string.

$ php -r 'var_dump(stream_socket_client("udp://127.0.0.1:13", $errorCode, $errorMessage), $errorCode, $errorMessage);'
resource(5) of type (stream)
int(0)
string(0) ""

EDIT it seems you can get those values even if the call fails: https://3v4l.org/TmSQQ

@MatTheCat MatTheCat force-pushed the stream_socket_client-stub branch from 5eb1e74 to c5b80a7 Compare April 1, 2025 16:21
@MatTheCat
Copy link
Author

@ondrejmirtes I’m not sure what changes you requested?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

stream_socket_client reference arguments’ type are ignored
2 participants