1. <legend id='GGrnV'><style id='GGrnV'><dir id='GGrnV'><q id='GGrnV'></q></dir></style></legend>

          <bdo id='GGrnV'></bdo><ul id='GGrnV'></ul>

      1. <tfoot id='GGrnV'></tfoot>

        <i id='GGrnV'><tr id='GGrnV'><dt id='GGrnV'><q id='GGrnV'><span id='GGrnV'><b id='GGrnV'><form id='GGrnV'><ins id='GGrnV'></ins><ul id='GGrnV'></ul><sub id='GGrnV'></sub></form><legend id='GGrnV'></legend><bdo id='GGrnV'><pre id='GGrnV'><center id='GGrnV'></center></pre></bdo></b><th id='GGrnV'></th></span></q></dt></tr></i><div id='GGrnV'><tfoot id='GGrnV'></tfoot><dl id='GGrnV'><fieldset id='GGrnV'></fieldset></dl></div>

        <small id='GGrnV'></small><noframes id='GGrnV'>

        使用 PHP 扩展 IPv6 地址的快速方法

        时间:2023-10-03
          <tbody id='knGAS'></tbody>
          <legend id='knGAS'><style id='knGAS'><dir id='knGAS'><q id='knGAS'></q></dir></style></legend>
            <bdo id='knGAS'></bdo><ul id='knGAS'></ul>

          • <small id='knGAS'></small><noframes id='knGAS'>

          • <i id='knGAS'><tr id='knGAS'><dt id='knGAS'><q id='knGAS'><span id='knGAS'><b id='knGAS'><form id='knGAS'><ins id='knGAS'></ins><ul id='knGAS'></ul><sub id='knGAS'></sub></form><legend id='knGAS'></legend><bdo id='knGAS'><pre id='knGAS'><center id='knGAS'></center></pre></bdo></b><th id='knGAS'></th></span></q></dt></tr></i><div id='knGAS'><tfoot id='knGAS'></tfoot><dl id='knGAS'><fieldset id='knGAS'></fieldset></dl></div>
              <tfoot id='knGAS'></tfoot>
                • 本文介绍了使用 PHP 扩展 IPv6 地址的快速方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在从事一个需要扩展 IPv6 地址的项目.其他用户创建的功能并不多,而且存在的功能都很丑陋.其中一些包括多个 foreachgmp_init,这增加了很多开销并且难以维护代码.我需要一个简单的、无负担的脚本来扩展 IPv6.

                  I was working on a project where I needed to expand IPv6 addresses. There are not many functions out there created by other users, and the ones that exist are ugly. Some of them included multiple foreach's and gmp_init, which added a lot of overhead and harder to maintain code. I need a simple, non-taxing script to expand IPv6.

                  为社区发布此内容.

                  推荐答案

                  以下是两行,其中 $ip 是一个精简的 IPv6 地址.返回扩展的 $ip.

                  The following is a two liner, where $ip is a condensed IPv6 address. Returns expanded $ip.

                  示例:

                  $ip = "fe80:01::af0";
                  echo expand($ip); // fe80:0001:0000:0000:0000:0000:0000:0af0
                  

                  功能:

                  function expand($ip){
                      $hex = unpack("H*hex", inet_pton($ip));         
                      $ip = substr(preg_replace("/([A-f0-9]{4})/", "$1:", $hex['hex']), 0, -1);
                  
                      return $ip;
                  }
                  

                  这篇关于使用 PHP 扩展 IPv6 地址的快速方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何在第一次出现“-"时拆分字符串?(减号)用 下一篇:如何停止基于 EXIF“方向"数据的 PHP iMagick 自

                  相关文章

                  最新文章

                    • <bdo id='cskg3'></bdo><ul id='cskg3'></ul>

                    <tfoot id='cskg3'></tfoot>

                    <small id='cskg3'></small><noframes id='cskg3'>

                  1. <i id='cskg3'><tr id='cskg3'><dt id='cskg3'><q id='cskg3'><span id='cskg3'><b id='cskg3'><form id='cskg3'><ins id='cskg3'></ins><ul id='cskg3'></ul><sub id='cskg3'></sub></form><legend id='cskg3'></legend><bdo id='cskg3'><pre id='cskg3'><center id='cskg3'></center></pre></bdo></b><th id='cskg3'></th></span></q></dt></tr></i><div id='cskg3'><tfoot id='cskg3'></tfoot><dl id='cskg3'><fieldset id='cskg3'></fieldset></dl></div>
                  2. <legend id='cskg3'><style id='cskg3'><dir id='cskg3'><q id='cskg3'></q></dir></style></legend>