dseigqk7443 2012-08-30 22:17
浏览 125
已采纳

获取与路由器连接的DHCP地址

I run MAMP to do local wordpress development and for various reasons I need to access the sites via something like http://192.162.1.99:8888 rather than http://localhost:8888. This is generally not a problem whilst on my own connection as I always connect with the same IP. However when out and about I have to mess about and change various constants to reflect the IP I'm on with that router.

So is there a technique using PHP that can ascertain this DHCP address? Nothing within $_SERVER returns this address, ['SERVER_ADDR'] & ['REMOTE_ADDR'] contain ::1 and ['HTTP_HOST'] contains localhost:8888.

  • 写回答

1条回答 默认 最新

  • douluyezhen4512 2012-08-30 23:39
    关注

    Likely not the cleanest solution, but if you are running Linux/Unix you can run the below php system call in your script. I have not tested it but I believe it will provide you with the correct IP in the variable. Just remember to switch en1 with your actual ethernet/wireless adapter name for your system. You may also need to use the exact path to the ifconfig command.

    $ipAddress = system('ifconfig en1 | grep inet | cut -d" " -f2' , $returnVal);
    

    Sorry if the variable names are not in the php standard, I normally develop in Java these days.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 fluent的在模拟压强时使用希望得到一些建议
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 Web.config连不上数据库
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。
  • ¥15 怎么配置广告联盟瀑布流
  • ¥15 Rstudio 保存代码闪退