You need this:
<?php
json_decode('{
"target": "^http://(www|corail)\\\\.sudoc\\\\.abes\\\\.fr"
}')
You escaped the \\s only one time. You need two times, the first time is for PHP, and the second time is for JSON.
P.S. Since your string in the JSON looks like an RegExp, you may need to do one more time escaping, i.e. double the number of backslashes again
Let me try to visualize what's going on. First in PHP, you write the string in this way:
$s='{"a":"^http://(www|corail)\\\\\\\\.sudoc\\\\\\\\.abes\\\\\\\\.fr"}'
After this, if you echo $s you will find this:
{"a":"^http://(www|corail)\\\\.sudoc\\\\.abes\\\\.fr"}
Then if you json_decode($s), the member a will have the content:
^http://(www|corail)\\.sudoc\\.abes\\.fr
Finally when you perform the RegExp, \\ is further escaped into \.
If you try:
<?php
echo '{
"target": "^http://(www|corail)\\.sudoc\\.abes\\.fr"
}';
the output is:
{
"target": "^http://(www|corail)\.sudoc\.abes\.fr"
}
See what's wrong? In JSON (JavaScript) \. is not a valid escape sequence, and so it is not a valid JSON, and so json_decode will fail, returning NULL.
If you try:
<?php
echo '{
"target": "^http://(www|corail)\\\\.sudoc\\\\.abes\\\\.fr"
}';
the output is:
{
"target": "^http://(www|corail)\\.sudoc\\.abes\\.fr"
}
which the escape sequence \\ will be valid for JSON.
j.json? You edited it, and now it doesn't look like validJSONto me. Did you do this with some reason? Because now the question (and the answers) do not make much sense anymore.... – Nanne Jul 24 '12 at 8:42