Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
451 views
in Q2A Core by
I have such values 3558726747 or 1586583636 - how to get ip from this ?

1 Answer

+2 votes
by
 
Best answer

$number = '1586583636 ';

$ip = long2ip($number); //output: 212.29.220.91

I guess it may works.

 

by
Thanks, it works.
...