So I need to store IP addresses in database, but storing them as stings is not very efficient and not very convenient for my purpose.

So... How can I convert ip into integer in php with as less processing as possible because it will be done millions of times a day.

And of course how can I convert back from integet to ip?

I know this can be googled and there's some easy solutions - but I'm asking for the fastest way, not just for "do X and you get Y" because it's actually pretty easy task.

link|improve this question

4  
Why don't you try some solutions and benchmark them? – Felix Kling Jun 27 '11 at 20:03
1  
Chances are you won't find something faster than the built-in ip2long() function. (Also: why would it matter?) – mario Jun 27 '11 at 20:05
Felix Kling, Well, proper benchmarking is not that easy to setup. Especially with such a small task. – NewProger Jun 27 '11 at 20:05
Will a float suffice? Alternativley, are you happy storing each part of the IP address in a separate column? Otherwise there is no way to have an int with different 'sections' – JoshB Jun 27 '11 at 20:05
Do you believe that ip2long is a fast method, although it is one of the top hits in Google? Next time, try Google first. – Felix Kling Jun 27 '11 at 20:07
show 1 more comment
feedback

4 Answers

up vote 7 down vote accepted

Use ip2long() and long2ip(). They are the fastest you can find in PHP, because they are just built on top of the corresponding C functions.

link|improve this answer
1  
That is one of the easy Google solutions, are you sure it is the fastest? ;) (just kidding) – Felix Kling Jun 27 '11 at 20:05
Yes. If you want to have it even faster, you may save the IPs as they are ;) – KingCrunch Jun 27 '11 at 20:07
Take care that PHP_INT_MAX is not configured on your system to make this function actually break! ;) – hakre Jun 27 '11 at 20:09
@lurler just run your own benchmarks, not hard with some simple code around on the net (try a google search). Also, C is always faster than php as it does not need to be interpreted – JoshB Jun 27 '11 at 20:10
3  
@Lurler: Your question is entirely based on conjectures about performance. If it was a serious concern of yours you would have benchmarked it. (Not saying what you tried is also pretty telling.) – mario Jun 27 '11 at 20:23
show 5 more comments
feedback

Use ip2long -- this function is so fast, it simply doesn't matter if you call it a million times a day. It is a library function, it is thus well-tested and reliable.

And, considering your working time, it is definitely the fastest solution in the whole universe.

link|improve this answer
What does "fast" mean in this context? Does it execute in 1 millisecond? 1 microsecond? 1 nanosecond? – Gabe Jun 27 '11 at 20:06
What do you mean by "considering your working time"? :) – NewProger Jun 27 '11 at 20:21
feedback

You can use an INT

$ip = ip2long($ip);

To save in mysql:

$sql = "INSERT INTO user(ip) VALUES('$ip')";
$dbQuery = mysql_query($sql,$dbLink

You can get back the ip later :

SELECT INET_NTOA(ip) FROM 'user' WHERE 1

INET_NTOA(expr):

Given a numeric IPv4 network address in network byte order, returns the dotted-quad representation of the address as a binary string. INET_NTOA() returns NULL if it does not understand its argument.

mysql> SELECT INET_NTOA(167773449); -> '10.0.5.9'

link|improve this answer
feedback

I take it you're not planning to support IPv6?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.