I wrote a script to remove R$ from a string this way:
$money ="R$ 100,00";
$charactersToBeRemoved = array("R", "$", " ");
$changedValue = str_replace($charactersToBeRemoved, "", $money);
This script works fine on the main script, but if I create a function for it like:
function removeDollar($x) {
$charactersToBeRemoved = array("R", "$", " ");
$changedValue = str_replace($charactersToBeRemoved, "", $x);
return $changedValue;
}
$money = "R$100,00";
$newValue = removeDollar($money);
echo $newValue;
$newValue
still shows R$100,00.
Notes:
This function was created on functions.php file where is already included by include function on the main script.
I really don't know what I am doing wrong.
Works fine like this
You can check the above code in this PHP Sandbox example
and works fine like this (in your example)
You can check the above code in this PHP Sandbox example
and in case you need to check all string characters
You can check the above code in this PHP Sandbox example