gpt4 book ai didi

php - 如何摆脱字符串中的空格,php

转载 作者:行者123 更新时间:2023-12-04 05:59:42 24 4
gpt4 key购买 nike

所以,我试过使用trim和str_replace,但我就是想不通。我用谷歌搜索了一下,似乎没有任何效果。

这是我的代码:

function convertcurrency($euro){
if (is_numeric($euro)) {
$currency = file_get_contents("http://www.google.com/ig/calculator?hl=en&q=".$euro."EUR%3D%3FUSD");
$contents = array_map('trim', explode(" ", $currency));
$getint = array_map('trim', explode("\"", $contents[3]));
unset($getint[0]);
$usdollar = implode(" ", $getint);
echo "$euro Euro's is equal to $usdollar U.S. Dollars";
}
else{
echo "$euro is not a number, please enter a number.";
}
}

convertcurrency(123123);

?>

谢谢!

编辑:

我很抱歉,我应该发布我的输出和预期的输出。

输出:123123 欧元等于 162 362.3 美元
预期产量:123123 欧元等于 162362.3 美元

一旦我摆脱了空格,我就可以使用 money_format 函数来正确显示它。

最佳答案

您将需要使用正则表达式来替换所有文本。

$string = preg_replace('/[\s]*/', '', $needle);

那应该对你有用。

关于php - 如何摆脱字符串中的空格,php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9076086/

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