首先,我想通知大家我是编程新手。为了避免无用的长消息,我将直接进入我的问题:
在我使用的 php 代码中:
$content = file_get_contents(" https://website.com/contentId=445 "); //这只是一个示例链接
我的问题是:如何获取 $content 输出中的两个值(Value #1 和 Value #2),以便稍后在我的代码中将它们用作(例如)$fetchedvalue1 和 $fetchedvalue2?
<span id="the_span_id1" class="">Value #1:</span>
<strong>
<span class="price">
999.11 USD
</span>
</strong>
<br/>
<span id="the_span_id2" class="">Value #2:</span>
<span class="price">
111.11 USD
</span>
尝试谷歌几个小时,但没有任何结果 - 我发现了几个类似的问题,但无法让他们的代码在这种环境中工作。请让我知道这个问题是否有任何不清楚的地方。
任何建议都非常感谢,谢谢!