I have a problem with the special character \ (backslash) in php. If I have the following code:
$f="aboca.png";
$ficheros[]=array("title" => $f, "description" => $f, "image" => "select\".$f");
pirnt_r($ficheros);
The result is:
Array ( [0] => Array ( [title] => aboca.png [description] => aboca.png [image] => select".aboca.png )
and I need the result to be as follows:
Array ( [0] => Array ( [title] => aboca.png [description] => aboca.png [image] => select\aboca.png )
I already know that \
is a special character and I've tried several combinations but there's no way.