Jump to content

Multiple socket problem


dadhich

Recommended Posts

Hi,

I am trying to open multiple sockets and wants to use them simultaneously for fetching webpages over the net.

say i m having "n" number of url's, so i am opening n sockets for it and after opening it i am fetching web contents simultaneously for all.

 

problem i am facing is that its not accepting url's other then domain or index page.

eg:- Its accepting "www.example.com" but not accepting "www.example.com/abc/xyz" etc etc...

 

 

$hosts = array("www.example1.com","www.example2.com");

$timeout = 30;

$status = array();

$sockets = array();

foreach ($hosts as $id => $host) {

$s = stream_socket_client("$host:80", $errno, $errstr, $timeout,

STREAM_CLIENT_ASYNC_CONNECT|STREAM_CLIENT_CONNECT);

if ($s) {

$sockets[$id] = $s;

$status[$id] = "in progress";

 

} else {

$status[$id] = "failed, $errno $errstr";

}

 

this is my code for opening sockets, if any one have solution, then kindly suggest me....

 

thanx in advance.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.