本文介绍了在 url 中传递一个 php 变量的最简单方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经研究了关于如何在 url 中传递 php 变量的各种讨论,但没有看到任何我感兴趣的简单情况.此外,我想绝对确定我正在了解 -日期解决方案.

I have examined various discussions about how to pass php variable in a url but haven't seen any with the simple situation I'm interested in. Also I would like to be absolutely sure I'm getting an up-to-date solution.

在数字图书中,我想链接到 mypage2.php 并包含一个变量 $video.如何安全地传递此变量,以及如何检测"$video 及其当前的溢油"值?

In a digital book, I want to link to mypage2.php and include a variable $video. How do I pass this variable safely, and how do I "detect" $video and its current value of "oil-spill"?

非常感谢.

推荐答案

制作一个链接:

printf('<a href="mypage2.php?video=%s">Link</a>', htmlspecialchars($video, ENT_COMPAT));

mypage2.php上,检查查询参数是否在URL中:

On mypage2.php, check if the query parameter is in the URL:

if (!isset($_GET['video'])) {
    die('I need that query parameter!');
}

$video = $_GET['video'];

这篇关于在 url 中传递一个 php 变量的最简单方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 07:45