mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-06-30 23:05:29 +00:00
18 lines
241 B
PHP
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;
|
|
}
|
|
|
|
|
|
?>
|