I have a dynamic value $input that represents a character in ascii. But somehow I just can't print it out correctly.
$str= "\155\155";
echo 'value is '.$str;
$input = 155;
$num= "\\".$input."\\".$input;
echo 'another value '.$num;
The first line will be "mm" But the second line is "\155\155" Is there some conversion I am leaving out?