|
Posted by cc on 10/12/05 18:23
Tommy, r u serious?
this ain't what you called 'thread or process',
just something like an user agent, like any web browser.
On 10/12/05, Tommy Jensehaugen <tommy_jensehaugen@hotmail.com> wrote:
> Thank you very much. This is what I ended up with if anyone needs it:
>
> <?php
> function runSeparateThread($strHost, $strPath="/") {
> $fFile = fsockopen($strHost, 80, $intError, $strError);
> if ($fFile) {
> $out = "GET ".$strPath." HTTP/1.1\r\n";
> $out .= "Host: ".$strHost."\r\n";
> $out .= "Connection: Close\r\n\r\n";
> if(!fwrite($fFile, $out)){
> $result = "runSeparateThread():fwrite(). Could not write:'".$out."'.
> Host:'".$strHost."'. Path:'".$strPath."'";
> } else {
> $result = true;
> }
> fclose($fFile);
> } else {
> $result = "runSeparateThread():fsockopen(): Could not connect to
> ".$strHost." (".$intError.") ".$strError.".";
> }
> return $result;
> }
> ?>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
Navigation:
[Reply to this message]
|