[Q] check how much http connection

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
fishown
Forum Commoner
Posts: 33
Joined: Sat May 12, 2007 5:35 pm

[Q] check how much http connection

Post by fishown »

I just want to know if the any "Built-in" function that return the number of the http connection,
Or even better the number of the peoples that curently downloading from my server.
Any if so, to check if certain IP is downloading from my site.

Thank you, again ;-]
gooney0
Forum Commoner
Posts: 56
Joined: Fri Jan 21, 2011 1:40 pm
Location: Reston, VA

Re: [Q] check how much http connection

Post by gooney0 »

Nope. Most of the information you want would require root access and would be unsafe for PHP to do.

Generally the builtin variables and functions are limited to a session.

http://us2.php.net/manual/en/reserved.v ... server.php

You could still write something to do this though. You may also find a stats script already written to do some of this as well.
Post Reply