我使用的URL = file_get_contents dom我得到一个数字作为一个值,有时只得到一个数字,有时得到一个数字+后者,如(12000 = 12K 20000 = 20K 150000= 150K 1000000 = 1M)
我需要编写一个简单的代码,将K替换为1000,将M替换为1000000,我已经将它们的值相加
原始代码:
$followers = $xpath->query("//span[@class='profile-followers']");
foreach($followers as $value) {
$followed_by = $values[] = trim($value->textContent);
$followed_by = str_replace('Followers', '', $followed_by);
$followed_by = str_replace('', '', $followed_by);
}
1条答案
按热度按时间im9ewurl1#
怎么样
运行
给予