I use PHP to access and output data on older machines.
Putty shows:
ββββββββββββββββββ
βNONE.
ββββββββββββββββββ
Its weird formatting in an attempt to show data in a cleaner way
PHP echo chrome shows:
NONE.
I tried:
$Str1 = str_replace("β","",$Str1);
But he does not filter them out. The output is already utf 8.
Does anyone know how to filter these things out? Maybe determine what for php?
source
share