graphonline/backend/crossDomain.php
2024-10-13 11:31:01 +02:00

18 lines
241 B
PHP

<?php
/*
Function to save/open graph
*/
// Domains of service.
$domains = array(
"graphonline.ru",
"graphonline.top",
);
function isCurrentDomain($domain)
{
return strcasecmp($domain, $_SERVER['SERVER_NAME']) == 0;
}
?>