无法使用 php 解析来自 pre 的文本
unable to parse text from pre with php
我无法使用我的 php 解析 link 中的文本。它给出了试图获取非对象的 属性 的错误。有人知道怎么回事吗?
$html = file_get_html('http://steamcommunity.com/market/priceoverview/?country=US¤cy=1&appid=730&market_hash_name=AK-47%20|%20Aquamarine%20Revenge%20%28Battle-Scarred%29');
$ret = $html->find('pre',0)->plaintext;
echo $ret;
来自 URL 的响应实际上没有 <pre>
- 它是直接的 json。
您的浏览器将内容放在 <pre>
中以使其正确显示给您,但该信息实际上并非来自 URL。
e:为了让它更有用...
$ret = file_get_contents('http://steamcommunity.com/market/priceoverview/?country=US¤cy=1&appid=730&market_hash_name=AK-47%20|%20Aquamarine%20Revenge%20%28Battle-Scarred%29');
echo $ret;
那么如果你想实际使用返回的数据...
$json = json_decode($ret);
我无法使用我的 php 解析 link 中的文本。它给出了试图获取非对象的 属性 的错误。有人知道怎么回事吗?
$html = file_get_html('http://steamcommunity.com/market/priceoverview/?country=US¤cy=1&appid=730&market_hash_name=AK-47%20|%20Aquamarine%20Revenge%20%28Battle-Scarred%29');
$ret = $html->find('pre',0)->plaintext;
echo $ret;
来自 URL 的响应实际上没有 <pre>
- 它是直接的 json。
您的浏览器将内容放在 <pre>
中以使其正确显示给您,但该信息实际上并非来自 URL。
e:为了让它更有用...
$ret = file_get_contents('http://steamcommunity.com/market/priceoverview/?country=US¤cy=1&appid=730&market_hash_name=AK-47%20|%20Aquamarine%20Revenge%20%28Battle-Scarred%29');
echo $ret;
那么如果你想实际使用返回的数据...
$json = json_decode($ret);