如何在 php 中的 foreach 循环上处理 json 字符串
How to work json string on foreach loop in php
我正在尝试从来自 JSON 值的字符串值创建一个 foreach 循环,例如:
string '["userdomain.ltd"], ["test.com"]'
我想做一个foreach循环并在循环下回显URL
我试过使用这个但是它 returns PHP Warning: Invalid argument supplied for foreach()
foreach( $device_url as $url ){
echo $url;
}
我的猜测是,您在将字符串传递给循环之前没有对其进行解码。而且你不能在一个字符串上循环。您应该先使用 json_decode
函数对其进行解码,然后再使用循环。
<?php
$input = '{"key": "value"}';
$decodedIntput = json_decode($input);
foreach( $decodedIntput as $url ){
echo $url;
}
我没有使用你的 json 因为它看起来无效。
您输入的是一个字符串,所以我们需要将其转换为数组进行迭代:
<?php
$str = '["userdomain.ltd"], ["test.com"]';
$arr = explode(',', $str);
foreach ($arr as $el) {
echo json_decode($el)[0];
echo "\n";
}
在这里您可以尝试工作代码:PHPize.online
我正在尝试从来自 JSON 值的字符串值创建一个 foreach 循环,例如:
string '["userdomain.ltd"], ["test.com"]'
我想做一个foreach循环并在循环下回显URL
我试过使用这个但是它 returns PHP Warning: Invalid argument supplied for foreach()
foreach( $device_url as $url ){
echo $url;
}
我的猜测是,您在将字符串传递给循环之前没有对其进行解码。而且你不能在一个字符串上循环。您应该先使用 json_decode
函数对其进行解码,然后再使用循环。
<?php
$input = '{"key": "value"}';
$decodedIntput = json_decode($input);
foreach( $decodedIntput as $url ){
echo $url;
}
我没有使用你的 json 因为它看起来无效。
您输入的是一个字符串,所以我们需要将其转换为数组进行迭代:
<?php
$str = '["userdomain.ltd"], ["test.com"]';
$arr = explode(',', $str);
foreach ($arr as $el) {
echo json_decode($el)[0];
echo "\n";
}
在这里您可以尝试工作代码:PHPize.online