3
I’ll just give you a simpler example so I don’t have to post the whole code, I don’t know if that’s possible.
$exemplo = "exemplo exemplo"
echo $exemplo;
When displaying this variable with echo it returns "example example" it would have some command or something q can use for it to return only "example" without repeating the word?
Note: I can not change the value of the variable nor by , because the way I use to capture it returns me exactly like this above.
Are the repeated values always separated by "space"? In this case this variable is a normal string right? You could turn this variable into an array, and in the array remove the same.
– Fleuquer Lima