I have a string like :
$str = "01110001";
and I want to change its type to binary with :
$bin = (binary) $str;
( because I want to inverse it ) But, when I try to var_dump($bin), I get :
string(8) "01110001"
Can anyone tell me what I'm missing ?