Simplexml URL 参数未传递

发布于 2024-12-13 17:04:11 字数 434 浏览 0 评论 0原文

我有以下代码,用于加载 xml 对象,但从请求检索变量值时遇到问题。

$var1 = isset($_REQUEST['var1']);
$url = "http://xmlurl.com?_render=rss&td=$var1";
$xml = simplexml_load_file($url);

上面的请求实际上会向 xml 函数发送一个不正确的值。

如果我手动硬编码 url 上的值,它会返回正确的记录。

$var1 = isset($_REQUEST['var1']);
$url = "http://xmlurl.com?_render=rss&td=valuespecified";
$xml = simplexml_load_file($url);

我可能会错过什么?

I have the following code which I use to load the xml object but having trouble with variable value when retrieved from request.

$var1 = isset($_REQUEST['var1']);
$url = "http://xmlurl.com?_render=rss&td=$var1";
$xml = simplexml_load_file($url);

The above will actually send an incorrect value with the request to xml function.

If I manually hard-code the value on the url, it returns the correct records.

$var1 = isset($_REQUEST['var1']);
$url = "http://xmlurl.com?_render=rss&td=valuespecified";
$xml = simplexml_load_file($url);

What could I be missing?

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

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

发布评论

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

评论(1

灯下孤影 2024-12-20 17:04:11

isset() 返回一个布尔值(true 或 false)。尝试使用以下代码:

$var1 = isset($_REQUEST['var1']) ? $_REQUEST['var1'] : 'default_value';

此代码将检查是否已提供 $_REQUEST['var1']。如果没有,则使用默认值 default_value

isset() returns a boolean value (true or false). Try using the following code:

$var1 = isset($_REQUEST['var1']) ? $_REQUEST['var1'] : 'default_value';

This code will check to see if $_REQUEST['var1'] has been supplied. If it has not, the use the default value of default_value.

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