Php Cors Multiple Headers

[Solved] Php Cors Multiple Headers | Php - Code Explorer | yomemimo.com
Question : php cors multiple headers

Answered by : moonitro

// enter the origins you want allowed for cors to work
$_SESSION['allowed_origins'] = array('*', "site1.com", "site2.com");
// use this function to cycle through the list and enter these dynamically
function setAllowedHeadersAPI($array) { foreach ($_SESSION['allowed_origins'] as $origin) { header("Access-Control-Allow-Origin: $origin"); header("Access-Control-Allow-Headers: $origin"); }
}
// call function and pass the array through it
setAllowedHeadersAPI($_SESSION['allowed_origins']);

Source : | Last Update : Tue, 31 Aug 21

Answers related to php cors multiple headers

Code Explorer Popular Question For Php