Question

I'm trying to represent the following Perl line in PHP:

$msg="!<connect_nettapi>\cD";  # Message ends with CTRL+D

I'm sending this string over a socket and the receiving API requires that the command be terminated by the CTRL+D character. I've been trying to use:

$msg="!<connect_nettapi>" . chr(some_hex_code);  # Message ends with CTRL+D

Thanks in advance.

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top