使用 cURL 将百分比添加到变量
如何添加变量 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this:
正如评论中所写:
As written in the comments: