ChadNomad Posted April 2, 2009 Share Posted April 2, 2009 Hi all, Is it possible to use an already open socket? Sorry I'm finding it difficult to describe this. I have created a persistent connection to a service with this: $connection = pfsockopen($servier, $port, $errno, $errstr) or exit($errno . " " . $errstr); Using a while look like while (!feof($connection)) I can use fputs to send through the socket. My question... Can I find and use an already open socket from another file completely unrelated so I can send custom commands "on the fly" so to speak? Everything I've tried has landed me with supplied argument is not a valid stream resource so far... Any help appreciated. Thanks Link to comment https://forums.phpfreaks.com/topic/152272-using-an-already-open-socket/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.