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

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

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

        <legend id='HKWE6'><style id='HKWE6'><dir id='HKWE6'><q id='HKWE6'></q></dir></style></legend>

        PHP中斜线后从URL中获取两个单词

        时间:2023-10-12

          1. <legend id='zVHfM'><style id='zVHfM'><dir id='zVHfM'><q id='zVHfM'></q></dir></style></legend>
              <tfoot id='zVHfM'></tfoot>
                <tbody id='zVHfM'></tbody>

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

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

                • <bdo id='zVHfM'></bdo><ul id='zVHfM'></ul>
                  本文介绍了PHP中斜线后从URL中获取两个单词的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我需要从 URL 中获取两个词.例如,我有以下网址:

                  I need to get two words from an URL. So for example I have the following URL:

                  http://mydomain.com/alrajhi/invoice/108678645541

                  我只需要使用 PHP 就可以使用alrajhi"和数字108678645541".

                  I need to get with PHP only "alrajhi"and the number "108678645541" nothing else.

                  你能帮我吗?

                  非常感谢!!

                  推荐答案

                  $string = 'http://mydomain.com/alrajhi/invoice/108678645541';
                  $parse = parse_url($string);
                  $explode = explode('/', $parse['path']);
                  

                  现在你有:

                  echo $explode[1]; // alrajhi
                  echo $explode[3]; // 108678645541
                  

                  这篇关于PHP中斜线后从URL中获取两个单词的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:提供图像以获取请求 下一篇:如何从特定 id 的 sql 中正确获取国家和其他信息

                  相关文章

                  1. <small id='JMrvp'></small><noframes id='JMrvp'>

                    <tfoot id='JMrvp'></tfoot>

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

                    • <bdo id='JMrvp'></bdo><ul id='JMrvp'></ul>
                  3. <legend id='JMrvp'><style id='JMrvp'><dir id='JMrvp'><q id='JMrvp'></q></dir></style></legend>