使用 cURL 将百分比添加到变量

发布于 2024-12-10 19:49:15 字数 375 浏览 0 评论 0原文

如何添加变量 a 的值的 80%(它是一个数值),这样当我回显它时,它会回显添加的百分比?

// Include the library
include('simple_html_dom.php');

    $html = file_get_html('https://thecurlurl.com/');

    // Find the DIV tag with an id of "myId"
    foreach($html->find('span#myId') as $a)

    // add 80% to variable "a", how ?
    echo $a->innertext . '<br>';
    echo $a;

How can I add 80% of the value of variable a (it is a numeric value), so when I echo it, it echos with the percentage added?

// Include the library
include('simple_html_dom.php');

    $html = file_get_html('https://thecurlurl.com/');

    // Find the DIV tag with an id of "myId"
    foreach($html->find('span#myId') as $a)

    // add 80% to variable "a", how ?
    echo $a->innertext . '<br>';
    echo $a;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生生漫 2024-12-17 19:49:16

试试这个:

echo round( $a/100 * 180 );

Try this:

echo round( $a/100 * 180 );
一曲琵琶半遮面シ 2024-12-17 19:49:16

正如评论中所写:

echo floatval($a->innertext) * 1.8;

As written in the comments:

echo floatval($a->innertext) * 1.8;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文