gpt4 book ai didi

php - 任何时候抓取(php)输出是正数或负数,相应的颜色

转载 作者:行者123 更新时间:2023-11-28 11:27:13 25 4
gpt4 key购买 nike

我不擅长 PHP,但在一些帮助下,我找到了如何通过 scrape/XPath 输出特定值。我正在尝试装配它,因此如果它输出的数字是正数,则颜色为绿色。如果为负,则颜色为红色。

以这个随机网站为例,当前给出一个值数字作为输出

<?php

$doc = new DOMDocument;
// We don't want to bother with white spaces
$doc->preserveWhiteSpace = false;

$doc->strictErrorChecking = false;
$doc->recover = true;

$doc->loadHTMLFile('http://www.moneycontrol.com/markets/global-indices/');

$xpath = new DOMXPath($doc);

$query = "//div[@class='MT10']";


$entries = $xpath->query($query);
foreach ($entries as $entry)
{
$result = trim($entry->textContent);
$ret_ = explode(' ', $result);
//make sure every element in the array don't start or end with blank

foreach ($ret_ as $key=>$val)
{
$ret_[$key]=trim($val);
}

//delete the empty element and the element is blank "\n" "\r" "\t"
//I modify this line
$ret_ = array_values(array_filter($ret_,deleteBlankInArray));

//echo the last element
echo $ret_[26];
}
}

我知道一些解决方案,但我的技术不够熟练,无法使其协同工作。如果可能的话,我将不胜感激。这是需要添加的东西类型,但我的独特情况是这是抓取的数据,随机数。

CSS

.value-positive {
color: #0cdb02;
}

.value-negative {
color: #fe0000;
}

PHP 代码:

<?php
$classname = $output < 0 ? 'negative' : 'positive';
print "<span class='value-$classname'>$output</span>";
?>

最佳答案

试试这个最简单的。希望这是可以理解的,并且是您正在寻找的。您需要使用 intval ,

You should define a function like this and invoke it when you need.

Try this code snippet here

<html>
<head>
<style>
.value-positive {
color: #0cdb02;
}

.value-negative {
color: #fe0000;
}
</style>
</head>
<body>
<?php

$output='-40.3%';

addClass($output);

function addClass($output)
{
$classname = intval($output) < 0 ? 'negative' : 'positive';
print "<span class='value-$classname'>$output</span>";
}

?>
</body>

</html>

关于php - 任何时候抓取(php)输出是正数或负数,相应的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44689403/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com