Socket Server
Posted on
16th Feb 2014 07:03 pm by
admin
In my following socket server, I am trying to listen to a connection through port 12345 in my web browser. http://127.0.0.1:12345/
I assumed that the following would detect that something was trying to connect to the port through the browser, using socket_create_listen(). I don't know if I am doing something wrong or just not understanding what socket_create_listen() is doing.
Did you know?Explore Trending and Topic pages for more stories like this.
Does anyone know why when going to the address, my socket server isn't detecting the connection?
Note: The client is supposed to be the web browser, not another php file.
Here is my server class:
Code: [Select]<?php
set_time_limit(0);
class Pherver{
private $setup;
public $server;
public $connections;
function __construct(){
$this->setup = parse_ini_file("config.ini", TRUE);
$this->server = socket_create_listen($setup['server']['port'], $etup['server']['connections']);
socket_listen($this->server);
}
function start(){
while($client = socket_accept($this->server)){
socket_write($client, "hello");
print "here";
}
}
}
?>
Here is how I start the server:
Code: [Select]<?php
include 'Pherver.php';
$server = new Pherver();
$server->start();
?>
Thank you
No comments posted yet
Your Answer:
Login to answer
324
31
Other forums
Multiple Pages
Hi. Im very new to php. I'm trying to create a basic login/registration page.
So I have a bas
Sort a two dimensional array.
Hi. I've set up a two dimensional array that reads as follows:
Code: $modifiedData = array(
Multidimensional Array into an Html table, help!
Hello all, I am new to HTML/PHP so any help would be great.
I have a multidimensional array f
HTML Form Server Side Validation
Hi, Im new here, im currently doing a website for a friend, and I have designed using snippets from
upload photo limits
ive got a upload photo script and im just trying to make more secure currently it limits size and as
ASP.NET Validation Event Cycle
Hi,
I have asp button as follow:Help with setcookie()
Merry Xmas to those on this foruum
Older guy here with some experience but not allot so please be
Image loading
Hi Developers,
I'm trying to display an image from images/image.gif getting the url from mysq
Number Format
Hi All,
I have number '000000000050085' I want to format it to 500.85 Can any one give me
Calling a Procedure with IN & OUT Parameters
Hello,
I usually call my procedures using the following way
declare variable e