file_get_contents php & amp; code example
Example: php file get content replacing & with &
$myUrl = 'https://www.myurl.com?';
$myArray = [
'foo' => 'fooString',
'bar' => 'barString'
];
$myUrl .= http_build_query($myArray,'','&'); // https://www.myurl.com?foo=fooString&bar=barString
$myData = file_get_contents($myUrl);