将 PHP 处理传递给另一个页面

发布于 2024-09-16 07:21:35 字数 71 浏览 5 评论 0原文

将其视为穷人的模板系统。我想将我的值存储到数据数组中,然后继续处理另一个页面上的视图。我将使用什么 PHP 命令来解决这个问题?

Think of it as a poor mans template system. I want to store my values into a data array and then continue processing the view on another page. What PHP command would I use to accommodate this?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦醒时光 2024-09-23 07:21:35

您可以包含第二个文件,第二个文件将有权访问所有数据。

You can include the second file and the second file will have access to all data.

っ左 2024-09-23 07:21:35

您需要做的就是设置数组,然后包含将显示它的页面。您包含的页面将有权访问 $myArray 的值。

主页

<?php
    $myArray= Array(1, 2, 3);
    include('ArrayDisplayPage.php');
?>

ArrayDisplayPage.php

<?php
    var_dump($myArray);
?>

All you need to do is set your array, and then include the page that will display it. Your included page will have access to the value(s) of $myArray.

Main Page

<?php
    $myArray= Array(1, 2, 3);
    include('ArrayDisplayPage.php');
?>

ArrayDisplayPage.php

<?php
    var_dump($myArray);
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文