如何在标头位置中包含 preg_match_all 结果?

发布于 2024-12-17 08:52:51 字数 1002 浏览 0 评论 0原文

我在 WordPress 主题的 function.php 中编写了以下函数

function get_mms($my_post) {
            $post_id = $my_post; //$_GET["p"];
            $queried_post = get_post($post_id);
            $title = $queried_post->post_title;

            preg_match_all('#\[mms\](.+)\[\/mms\]#', $queried_post->post_content, $matches);
            echo 'EN: ' . $matches[1][0];



            echo '<br><br><form action= " ' . get_permalink( $id ) . ' " method="post">
    Numar: <input type="text" name="fname" />
    <input name="submito" type="submit" />
    </form>'; 

    $numero = $_POST["fname"];

    if(isset($_POST['submito'])&& $_POST['fname']){
    $numero = $_POST["fname"];
    header("Location: http://server/&to=$numero&text='.$matches[1][0].'&from=Moldcell");
    }

当我提交表单而不是获取 $matches[1][0] 的值时,我得到 Array[0]< /代码>。

难道是我做错了什么?我该怎么做才能让它获取 preg_match_all 结果的值?

I have the following function written in function.php in a wordpress theme

function get_mms($my_post) {
            $post_id = $my_post; //$_GET["p"];
            $queried_post = get_post($post_id);
            $title = $queried_post->post_title;

            preg_match_all('#\[mms\](.+)\[\/mms\]#', $queried_post->post_content, $matches);
            echo 'EN: ' . $matches[1][0];



            echo '<br><br><form action= " ' . get_permalink( $id ) . ' " method="post">
    Numar: <input type="text" name="fname" />
    <input name="submito" type="submit" />
    </form>'; 

    $numero = $_POST["fname"];

    if(isset($_POST['submito'])&& $_POST['fname']){
    $numero = $_POST["fname"];
    header("Location: http://server/&to=$numero&text='.$matches[1][0].'&from=Moldcell");
    }

When I submit the form instead of getting the value of $matches[1][0] I get Array[0].

Is there someting I did wrong? What can I do to make it grab the value of preg_match_all results?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文