One Hat Cyber Team
Your IP :
18.221.79.157
Server IP :
192.185.194.254
Server :
Linux raider.websitewelcome.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Server Software :
Apache
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home2
/
glenar
/
ads.glenar.com
/
includes
/
View File Name :
functions.inc.php_backup
<?PHP function set_option($key, $val) { $db = Database::getDatabase(); $db->query('REPLACE INTO options (`key`, `value`) VALUES (:key:, :value:)', array('key' => $key, 'value' => $val)); } function get_option($key, $default = null) { $db = Database::getDatabase(); $db->query('SELECT `value` FROM options WHERE `key` = :key:', array('key' => $key)); if ($db->hasRows()) return $db->getValue(); else return $default; } function delete_option($key) { $db = Database::getDatabase(); $db->query('DELETE FROM options WHERE `key` = :key:', array('key' => $key)); return $db->affectedRows(); } function printr($var) { $output = print_r($var, true); $output = str_replace("\n", "<br>", $output); $output = str_replace(' ', ' ', $output); echo "<div style='font-family:courier;'>$output</div>"; } // Formats a given number of seconds into proper mm:ss format function format_time($seconds) { return floor($seconds / 60) . ':' . str_pad($seconds % 60, 2, '0'); } // Given a string such as "comment_123" or "id_57", it returns the final, numeric id. function split_id($str) { return match('/[_-]([0-9]+)$/', $str, 1); } // Creates a friendly URL slug from a string function slugify($str) { $str = preg_replace('/[^a-zA-Z0-9 -]/', '', $str); $str = strtolower(str_replace(' ', '-', trim($str))); $str = preg_replace('/-+/', '-', $str); return $str; } // Computes the *full* URL of the current page (protocol, server, path, query parameters, etc) function full_url() { $s = empty($_SERVER['HTTPS']) ? '' : ($_SERVER['HTTPS'] == 'on') ? 's' : ''; $protocol = substr(strtolower($_SERVER['SERVER_PROTOCOL']), 0, strpos(strtolower($_SERVER['SERVER_PROTOCOL']), '/')) . $s; $port = ($_SERVER['SERVER_PORT'] == '80') ? '' : (":" . $_SERVER['SERVER_PORT']); return $protocol . "://" . $_SERVER['HTTP_HOST'] . $port . $_SERVER['REQUEST_URI']; } // Returns an English representation of a date // Graciously stolen from http://ejohn.org/files/pretty.js function time2str($ts) { if (!ctype_digit($ts)) $ts = strtotime($ts); $diff = time() - $ts; if ($diff == 0) return 'now'; elseif ($diff > 0) { $day_diff = floor($diff / 86400); if ($day_diff == 0) { if ($diff < 60) return 'just now'; if ($diff < 120) return '1 minute ago'; if ($diff < 3600) return floor($diff / 60) . ' minutes ago'; if ($diff < 7200) return '1 hour ago'; if ($diff < 86400) return floor($diff / 3600) . ' hours ago'; } if ($day_diff == 1) return 'Yesterday'; if ($day_diff < 7) return $day_diff . ' days ago'; if ($day_diff < 31) return ceil($day_diff / 7) . ' weeks ago'; if ($day_diff < 60) return 'last month'; $ret = date('F Y', $ts); return ($ret == 'December 1969') ? '' : $ret; } else { $diff = abs($diff); $day_diff = floor($diff / 86400); if ($day_diff == 0) { if ($diff < 120) return 'in a minute'; if ($diff < 3600) return 'in ' . floor($diff / 60) . ' minutes'; if ($diff < 7200) return 'in an hour'; if ($diff < 86400) return 'in ' . floor($diff / 3600) . ' hours'; } if ($day_diff == 1) return 'Tomorrow'; if ($day_diff < 4) return date('l', $ts); if ($day_diff < 7 + (7 - date('w'))) return 'next week'; if (ceil($day_diff / 7) < 4) return 'in ' . ceil($day_diff / 7) . ' weeks'; if (date('n', $ts) == date('n') + 1) return 'next month'; $ret = date('F Y', $ts); return ($ret == 'December 1969') ? '' : $ret; } } // Returns an array representation of the given calendar month. // The array values are timestamps which allow you to easily format // and manipulate the dates as needed. function calendar($month = null, $year = null) { if (is_null($month)) $month = date('n'); if (is_null($year)) $year = date('Y'); $first = mktime(0, 0, 0, $month, 1, $year); $last = mktime(23, 59, 59, $month, date('t', $first), $year); $start = $first - (86400 * date('w', $first)); $stop = $last + (86400 * (7 - date('w', $first))); $out = array(); while ($start < $stop) { $week = array(); if ($start > $last) break; for ($i = 0; $i < 7; $i++) { $week[$i] = $start; $start += 86400; } $out[] = $week; } return $out; } // Processes mod_rewrite URLs into key => value pairs // See .htacess for more info. function pick_off($grab_first = false, $sep = '/') { $ret = array(); $arr = explode($sep, trim($_SERVER['REQUEST_URI'], $sep)); if ($grab_first) $ret[0] = array_shift($arr); while (count($arr) > 0) $ret[array_shift($arr)] = array_shift($arr); return (count($ret) > 0) ? $ret : false; } // Creates a list of <option>s from the given database table. // table name, column to use as value, column(s) to use as text, default value(s) to select (can accept an array of values), extra sql to limit results function get_options($table, $val, $text, $default = null, $sql = '') { $db = Database::getDatabase(true); $out = ''; $table = $db->escape($table); $rows = $db->getRows("SELECT * FROM `$table` $sql"); foreach ($rows as $row) { $the_text = ''; if (!is_array($text)) $text = array($text); // Allows you to concat multiple fields for display foreach ($text as $t) $the_text .= $row[$t] . ' '; $the_text = htmlspecialchars(trim($the_text)); if (!is_null($default) && $row[$val] == $default) $out .= '<option value="' . htmlspecialchars($row[$val], ENT_QUOTES) . '" selected="selected">' . $the_text . '</option>'; elseif (is_array($default) && in_array($row[$val], $default)) $out .= '<option value="' . htmlspecialchars($row[$val], ENT_QUOTES) . '" selected="selected">' . $the_text . '</option>'; else $out .= '<option value="' . htmlspecialchars($row[$val], ENT_QUOTES) . '">' . $the_text . '</option>'; } return $out; } // More robust strict date checking for string representations function chkdate($str) { // Requires PHP 5.2 if (function_exists('date_parse')) { $info = date_parse($str); if ($info !== false && $info['error_count'] == 0) { if (checkdate($info['month'], $info['day'], $info['year'])) return true; } return false; } // Else, for PHP < 5.2 return strtotime($str); } // Converts a date/timestamp into the specified format function dater($date = null, $format = null) { if (is_null($format)) $format = 'Y-m-d H:i:s'; if (is_null($date)) $date = time(); if (is_int($date)) return date($format, $date); if (is_float($date)) return date($format, $date); if (is_string($date)) { if (ctype_digit($date) === true) return date($format, $date); if ((preg_match('/[^0-9.]/', $date) == 0) && (substr_count($date, '.') <= 1)) return date($format, floatval($date)); return date($format, strtotime($date)); } // If $date is anything else, you're doing something wrong, // so just let PHP error out however it wants. return date($format, $date); } // Formats a phone number as (xxx) xxx-xxxx or xxx-xxxx depending on the length. function format_phone($phone) { $phone = preg_replace("/[^0-9]/", '', $phone); if (strlen($phone) == 7) return preg_replace("/([0-9]{3})([0-9]{4})/", "$1-$2", $phone); elseif (strlen($phone) == 10) return preg_replace("/([0-9]{3})([0-9]{3})([0-9]{4})/", "($1) $2-$3", $phone); else return $phone; } // Outputs hour, minute, am/pm dropdown boxes function hourmin($hid = 'hour', $mid = 'minute', $pid = 'ampm', $hval = null, $mval = null, $pval = null) { // Dumb hack to let you just pass in a timestamp instead if (func_num_args() == 1) { list($hval, $mval, $pval) = explode(' ', date('g i a', strtotime($hid))); $hid = 'hour'; $mid = 'minute'; $aid = 'ampm'; } else { if (is_null($hval)) $hval = date('h'); if (is_null($mval)) $mval = date('i'); if (is_null($pval)) $pval = date('a'); } $hours = array(12, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11); $out = "<select name='$hid' id='$hid'>"; foreach ($hours as $hour) if (intval($hval) == intval($hour)) $out .= "<option value='$hour' selected>$hour</option>"; else $out .= "<option value='$hour'>$hour</option>"; $out .= "</select>"; $minutes = array('00', 15, 30, 45); $out .= "<select name='$mid' id='$mid'>"; foreach ($minutes as $minute) if (intval($mval) == intval($minute)) $out .= "<option value='$minute' selected>$minute</option>"; else $out .= "<option value='$minute'>$minute</option>"; $out .= "</select>"; $out .= "<select name='$pid' id='$pid'>"; $out .= "<option value='am'>am</option>"; if ($pval == 'pm') $out .= "<option value='pm' selected>pm</option>"; else $out .= "<option value='pm'>pm</option>"; $out .= "</select>"; return $out; } // Returns the HTML for a month, day, and year dropdown boxes. // You can set the default date by passing in a timestamp OR a parseable date string. // $prefix_ will be appened to the name/id's of each dropdown, allowing for multiple calls in the same form. // $output_format lets you specify which dropdowns appear and in what order. function mdy($date = null, $prefix = null, $output_format = 'm d y') { if (is_null($date)) $date = time(); if (!ctype_digit($date)) $date = strtotime($date); if (!is_null($prefix)) $prefix .= '_'; list($yval, $mval, $dval) = explode(' ', date('Y n j', $date)); $month_dd = "<select name='{$prefix}month' id='{$prefix}month'>"; for ($i = 1; $i <= 12; $i++) { $selected = ($mval == $i) ? ' selected="selected"' : ''; $month_dd .= "<option value='$i'$selected>" . date('F', mktime(0, 0, 0, $i, 1, 2000)) . "</option>"; } $month_dd .= "</select>"; $day_dd = "<select name='{$prefix}day' id='{$prefix}day'>"; for ($i = 1; $i <= 31; $i++) { $selected = ($dval == $i) ? ' selected="selected"' : ''; $day_dd .= "<option value='$i'$selected>$i</option>"; } $day_dd .= "</select>"; $year_dd = "<select name='{$prefix}year' id='{$prefix}year'>"; for ($i = date('Y'); $i < date('Y') + 10; $i++) { $selected = ($yval == $i) ? ' selected="selected"' : ''; $year_dd .= "<option value='$i'$selected>$i</option>"; } $year_dd .= "</select>"; $trans = array('m' => $month_dd, 'd' => $day_dd, 'y' => $year_dd); return strtr($output_format, $trans); } // Redirects user to $url function redirect($url = null) { if (is_null($url)) $url = $_SERVER['PHP_SELF']; header("Location: $url"); exit(); } // Ensures $str ends with a single / function slash($str) { return rtrim($str, '/') . '/'; } // Ensures $str DOES NOT end with a / function unslash($str) { return rtrim($str, '/'); } // Returns an array of the values of the specified column from a multi-dimensional array function gimme($arr, $key = null) { if (is_null($key)) $key = current(array_keys($arr)); $out = array(); foreach ($arr as $a) $out[] = $a[$key]; return $out; } // Fixes MAGIC_QUOTES function fix_slashes($arr = '') { if (is_null($arr) || $arr == '') return null; if (!get_magic_quotes_gpc()) return $arr; return is_array($arr) ? array_map('fix_slashes', $arr) : stripslashes($arr); } // Returns the first $num words of $str function max_words($str, $num, $suffix = '') { $words = explode(' ', $str); if (count($words) < $num) return $str; else return implode(' ', array_slice($words, 0, $num)) . $suffix; } // Serves an external document for download as an HTTP attachment. function download_document($filename, $mimetype = 'application/octet-stream') { if (!file_exists($filename) || !is_readable($filename)) return false; $base = basename($filename); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Content-Disposition: attachment; filename=$base"); header("Content-Length: " . filesize($filename)); header("Content-Type: $mimetype"); readfile($filename); exit(); } // Retrieves the filesize of a remote file. function remote_filesize($url, $user = null, $pw = null) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_NOBODY, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); if (!is_null($user) && !is_null($pw)) { $headers = array('Authorization: Basic ' . base64_encode("$user:$pw")); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); } $head = curl_exec($ch); curl_close($ch); preg_match('/Content-Length:\s([0-9].+?)\s/', $head, $matches); return isset($matches[1]) ? $matches[1] : false; } // Inserts a string within another string at a specified location function str_insert($needle, $haystack, $location) { $front = substr($haystack, 0, $location); $back = substr($haystack, $location); return $front . $needle . $back; } // Outputs a filesize in human readable format. function bytes2str($val, $round = 0) { $unit = array('', 'K', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y'); while ($val >= 1000) { $val /= 1024; array_shift($unit); } return round($val, $round) . array_shift($unit) . 'B'; } // Tests for a valid email address and optionally tests for valid MX records, too. function valid_email($email, $test_mx = false) { if (preg_match("/^([_a-z0-9+-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-z]{2,4})$/i", $email)) { if ($test_mx) { list(, $domain) = explode("@", $email); return getmxrr($domain, $mxrecords); } else return true; } else return false; } // Grabs the contents of a remote URL. Can perform basic authentication if un/pw are provided. function geturl($url, $username = null, $password = null) { if (function_exists('curl_init')) { $ch = curl_init(); if (!is_null($username) && !is_null($password)) curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Basic ' . base64_encode("$username:$password"))); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); $html = curl_exec($ch); curl_close($ch); return $html; } elseif (ini_get('allow_url_fopen') == true) { if (!is_null($username) && !is_null($password)) $url = str_replace("://", "://$username:$password@", $url); $html = file_get_contents($url); return $html; } else { // Cannot open url. Either install curl-php or set allow_url_fopen = true in php.ini return false; } } // Returns the user's browser info. // browscap.ini must be available for this to work. // See the PHP manual for more details. function browser_info() { $info = get_browser(null, true); $browser = $info['browser'] . ' ' . $info['version']; $os = $info['platform']; $ip = $_SERVER['REMOTE_ADDR']; return array('ip' => $ip, 'browser' => $browser, 'os' => $os); } // Quick wrapper for preg_match function match($regex, $str, $i = 0) { if (preg_match($regex, $str, $match) == 1) return $match[$i]; else return false; } // Sends an HTML formatted email function send_html_mail($to, $subject, $msg, $from, $plaintext = '') { if (!is_array($to)) $to = array($to); foreach ($to as $address) { $boundary = uniqid(rand(), true); $headers = "From: $from\n"; $headers .= "MIME-Version: 1.0\n"; $headers .= "Content-Type: multipart/alternative; boundary = $boundary\n"; $headers .= "This is a MIME encoded message.\n\n"; $headers .= "--$boundary\n" . "Content-Type: text/plain; charset=ISO-8859-1\n" . "Content-Transfer-Encoding: base64\n\n"; $headers .= chunk_split(base64_encode($plaintext)); $headers .= "--$boundary\n" . "Content-Type: text/html; charset=ISO-8859-1\n" . "Content-Transfer-Encoding: base64\n\n"; $headers .= chunk_split(base64_encode($msg)); $headers .= "--$boundary--\n" . mail($address, $subject, '', $headers); } } // Returns the lat, long of an address via Yahoo!'s geocoding service. // You'll need an App ID, which is available from here: // http://developer.yahoo.com/maps/rest/V1/geocode.html // Note: needs to be updated to use PlaceFinder instead. function geocode($location, $appid) { $location = urlencode($location); $appid = urlencode($appid); $data = file_get_contents("http://local.yahooapis.com/MapsService/V1/geocode?output=php&appid=$appid&location=$location"); $data = unserialize($data); if ($data === false) return false; $data = $data['ResultSet']['Result']; return array('lat' => $data['Latitude'], 'lng' => $data['Longitude']); } // A stub for Yahoo!'s reverse geocoding service // http://developer.yahoo.com/geo/placefinder/ function reverse_geocode($lat, $lng) { } // Quick and dirty wrapper for curl scraping. function curl($url, $referer = null, $post = null) { static $tmpfile; if (!isset($tmpfile) || ($tmpfile == '')) $tmpfile = tempnam('/tmp', 'FOO'); $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_COOKIEFILE, $tmpfile); curl_setopt($ch, CURLOPT_COOKIEJAR, $tmpfile); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1) Gecko/20061024 BonEcho/2.0"); // curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // curl_setopt($ch, CURLOPT_VERBOSE, 1); if ($referer) curl_setopt($ch, CURLOPT_REFERER, $referer); if (!is_null($post)) { curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); } $html = curl_exec($ch); // $last_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL); return $html; } // Accepts any number of arguments and returns the first non-empty one function pick() { foreach (func_get_args() as $arg) if (!empty($arg)) return $arg; return ''; } // Secure a PHP script using basic HTTP authentication function http_auth($un, $pw, $realm = "Secured Area") { if (!(isset($_SERVER['PHP_AUTH_USER']) && isset($_SERVER['PHP_AUTH_PW']) && $_SERVER['PHP_AUTH_USER'] == $un && $_SERVER['PHP_AUTH_PW'] == $pw)) { header('WWW-Authenticate: Basic realm="' . $realm . '"'); header('Status: 401 Unauthorized'); exit(); } } // This is easier than typing 'echo WEB_ROOT' function WEBROOT() { echo WEB_ROOT; } // Class Autloader spl_autoload_register('framework_autoload'); function framework_autoload($class_name) { $filename = DOC_ROOT . '/includes/class.' . strtolower($class_name) . '.php'; if (file_exists($filename)) require $filename; } // Returns a file's mimetype based on its extension function mime_type($filename, $default = 'application/octet-stream') { $mime_types = array('323' => 'text/h323', 'acx' => 'application/internet-property-stream', 'ai' => 'application/postscript', 'aif' => 'audio/x-aiff', 'aifc' => 'audio/x-aiff', 'aiff' => 'audio/x-aiff', 'asf' => 'video/x-ms-asf', 'asr' => 'video/x-ms-asf', 'asx' => 'video/x-ms-asf', 'au' => 'audio/basic', 'avi' => 'video/x-msvideo', 'axs' => 'application/olescript', 'bas' => 'text/plain', 'bcpio' => 'application/x-bcpio', 'bin' => 'application/octet-stream', 'bmp' => 'image/bmp', 'c' => 'text/plain', 'cat' => 'application/vnd.ms-pkiseccat', 'cdf' => 'application/x-cdf', 'cer' => 'application/x-x509-ca-cert', 'class' => 'application/octet-stream', 'clp' => 'application/x-msclip', 'cmx' => 'image/x-cmx', 'cod' => 'image/cis-cod', 'cpio' => 'application/x-cpio', 'crd' => 'application/x-mscardfile', 'crl' => 'application/pkix-crl', 'crt' => 'application/x-x509-ca-cert', 'csh' => 'application/x-csh', 'css' => 'text/css', 'dcr' => 'application/x-director', 'der' => 'application/x-x509-ca-cert', 'dir' => 'application/x-director', 'dll' => 'application/x-msdownload', 'dms' => 'application/octet-stream', 'doc' => 'application/msword', 'dot' => 'application/msword', 'dvi' => 'application/x-dvi', 'dxr' => 'application/x-director', 'eps' => 'application/postscript', 'etx' => 'text/x-setext', 'evy' => 'application/envoy', 'exe' => 'application/octet-stream', 'fif' => 'application/fractals', 'flac' => 'audio/flac', 'flr' => 'x-world/x-vrml', 'gif' => 'image/gif', 'gtar' => 'application/x-gtar', 'gz' => 'application/x-gzip', 'h' => 'text/plain', 'hdf' => 'application/x-hdf', 'hlp' => 'application/winhlp', 'hqx' => 'application/mac-binhex40', 'hta' => 'application/hta', 'htc' => 'text/x-component', 'htm' => 'text/html', 'html' => 'text/html', 'htt' => 'text/webviewhtml', 'ico' => 'image/x-icon', 'ief' => 'image/ief', 'iii' => 'application/x-iphone', 'ins' => 'application/x-internet-signup', 'isp' => 'application/x-internet-signup', 'jfif' => 'image/pipeg', 'jpe' => 'image/jpeg', 'jpeg' => 'image/jpeg', 'jpg' => 'image/jpeg', 'js' => 'application/x-javascript', 'latex' => 'application/x-latex', 'lha' => 'application/octet-stream', 'lsf' => 'video/x-la-asf', 'lsx' => 'video/x-la-asf', 'lzh' => 'application/octet-stream', 'm13' => 'application/x-msmediaview', 'm14' => 'application/x-msmediaview', 'm3u' => 'audio/x-mpegurl', 'man' => 'application/x-troff-man', 'mdb' => 'application/x-msaccess', 'me' => 'application/x-troff-me', 'mht' => 'message/rfc822', 'mhtml' => 'message/rfc822', 'mid' => 'audio/mid', 'mny' => 'application/x-msmoney', 'mov' => 'video/quicktime', 'movie' => 'video/x-sgi-movie', 'mp2' => 'video/mpeg', 'mp3' => 'audio/mpeg', 'mpa' => 'video/mpeg', 'mpe' => 'video/mpeg', 'mpeg' => 'video/mpeg', 'mpg' => 'video/mpeg', 'mpp' => 'application/vnd.ms-project', 'mpv2' => 'video/mpeg', 'ms' => 'application/x-troff-ms', 'mvb' => 'application/x-msmediaview', 'nws' => 'message/rfc822', 'oda' => 'application/oda', 'oga' => 'audio/ogg', 'ogg' => 'audio/ogg', 'ogv' => 'video/ogg', 'ogx' => 'application/ogg', 'p10' => 'application/pkcs10', 'p12' => 'application/x-pkcs12', 'p7b' => 'application/x-pkcs7-certificates', 'p7c' => 'application/x-pkcs7-mime', 'p7m' => 'application/x-pkcs7-mime', 'p7r' => 'application/x-pkcs7-certreqresp', 'p7s' => 'application/x-pkcs7-signature', 'pbm' => 'image/x-portable-bitmap', 'pdf' => 'application/pdf', 'pfx' => 'application/x-pkcs12', 'pgm' => 'image/x-portable-graymap', 'pko' => 'application/ynd.ms-pkipko', 'pma' => 'application/x-perfmon', 'pmc' => 'application/x-perfmon', 'pml' => 'application/x-perfmon', 'pmr' => 'application/x-perfmon', 'pmw' => 'application/x-perfmon', 'pnm' => 'image/x-portable-anymap', 'pot' => 'application/vnd.ms-powerpoint', 'ppm' => 'image/x-portable-pixmap', 'pps' => 'application/vnd.ms-powerpoint', 'ppt' => 'application/vnd.ms-powerpoint', 'prf' => 'application/pics-rules', 'ps' => 'application/postscript', 'pub' => 'application/x-mspublisher', 'qt' => 'video/quicktime', 'ra' => 'audio/x-pn-realaudio', 'ram' => 'audio/x-pn-realaudio', 'ras' => 'image/x-cmu-raster', 'rgb' => 'image/x-rgb', 'rmi' => 'audio/mid', 'roff' => 'application/x-troff', 'rtf' => 'application/rtf', 'rtx' => 'text/richtext', 'scd' => 'application/x-msschedule', 'sct' => 'text/scriptlet', 'setpay' => 'application/set-payment-initiation', 'setreg' => 'application/set-registration-initiation', 'sh' => 'application/x-sh', 'shar' => 'application/x-shar', 'sit' => 'application/x-stuffit', 'snd' => 'audio/basic', 'spc' => 'application/x-pkcs7-certificates', 'spl' => 'application/futuresplash', 'src' => 'application/x-wais-source', 'sst' => 'application/vnd.ms-pkicertstore', 'stl' => 'application/vnd.ms-pkistl', 'stm' => 'text/html', 'svg' => "image/svg+xml", 'sv4cpio' => 'application/x-sv4cpio', 'sv4crc' => 'application/x-sv4crc', 't' => 'application/x-troff', 'tar' => 'application/x-tar', 'tcl' => 'application/x-tcl', 'tex' => 'application/x-tex', 'texi' => 'application/x-texinfo', 'texinfo' => 'application/x-texinfo', 'tgz' => 'application/x-compressed', 'tif' => 'image/tiff', 'tiff' => 'image/tiff', 'tr' => 'application/x-troff', 'trm' => 'application/x-msterminal', 'tsv' => 'text/tab-separated-values', 'txt' => 'text/plain', 'uls' => 'text/iuls', 'ustar' => 'application/x-ustar', 'vcf' => 'text/x-vcard', 'vrml' => 'x-world/x-vrml', 'wav' => 'audio/x-wav', 'wcm' => 'application/vnd.ms-works', 'wdb' => 'application/vnd.ms-works', 'wks' => 'application/vnd.ms-works', 'wmf' => 'application/x-msmetafile', 'wps' => 'application/vnd.ms-works', 'wri' => 'application/x-mswrite', 'wrl' => 'x-world/x-vrml', 'wrz' => 'x-world/x-vrml', 'xaf' => 'x-world/x-vrml', 'xbm' => 'image/x-xbitmap', 'xla' => 'application/vnd.ms-excel', 'xlc' => 'application/vnd.ms-excel', 'xlm' => 'application/vnd.ms-excel', 'xls' => 'application/vnd.ms-excel', 'xlt' => 'application/vnd.ms-excel', 'xlw' => 'application/vnd.ms-excel', 'xof' => 'x-world/x-vrml', 'xpm' => 'image/x-xpixmap', 'xwd' => 'image/x-xwindowdump', 'z' => 'application/x-compress', 'zip' => 'application/zip'); $ext = pathinfo($filename, PATHINFO_EXTENSION); return isset($mime_types[$ext]) ? $mime_types[$ext] : $default; } function reArrayFiles(&$file_post) { $file_ary = array(); $file_count = count($file_post['name']); $file_keys = array_keys($file_post); for ($i = 0; $i < $file_count; $i++) { foreach ($file_keys as $key) { if ($file_count > 1) $file_ary[$i][$key] = $file_post[$key][$i]; else $file_ary[$i][$key] = $file_post[$key]; } } return $file_ary; } function aasort(&$array, $key) { $sorter = array(); $ret = array(); reset($array); foreach ($array as $ii => $va) { $sorter[$ii] = $va[$key]; } asort($sorter); foreach ($sorter as $ii => $va) { $ret[$ii] = $array[$ii]; } $array = $ret; } function country_list() { $country_list = array( "Asia/Pacific Region", "Europe", "Andorra", "United Arab Emirates", "Afghanistan", "Antigua and Barbuda", "Anguilla", "Albania", "Armenia", "Curacao", "Angola", "Antarctica", "Argentina", "American Samoa", "Austria", "Australia", "Aruba", "Azerbaijan", "Bosnia and Herzegovina", "Barbados", "Bangladesh", "Belgium", "Burkina Faso", "Bulgaria", "Bahrain", "Burundi", "Benin", "Bermuda", "Brunei Darussalam", "Bolivia", "Brazil", "Bahamas", "Bhutan", "Bouvet Island", "Botswana", "Belarus", "Belize", "Canada", "Cocos (Keeling) Islands", "Congo, The Democratic Republic of the", "Central African Republic", "Congo", "Switzerland", "Cote D'Ivoire", "Cook Islands", "Chile", "Cameroon", "China", "Colombia", "Costa Rica", "Cuba", "Cape Verde", "Christmas Island", "Cyprus", "Czech Republic", "Germany", "Djibouti", "Denmark", "Dominica", "Dominican Republic", "Algeria", "Ecuador", "Estonia", "Egypt", "Western Sahara", "Eritrea", "Spain", "Ethiopia", "Finland", "Fiji", "Falkland Islands (Malvinas)", "Micronesia, Federated States of", "Faroe Islands", "France", "Sint Maarten (Dutch part)", "Gabon", "United Kingdom", "Grenada", "Georgia", "French Guiana", "Ghana", "Gibraltar", "Greenland", "Gambia", "Guinea", "Guadeloupe", "Equatorial Guinea", "Greece", "South Georgia and the South Sandwich Islands", "Guatemala", "Guam", "Guinea-Bissau", "Guyana", "Hong Kong", "Heard Island and McDonald Islands", "Honduras", "Croatia", "Haiti", "Hungary", "Indonesia", "Ireland", "Israel", "India", "British Indian Ocean Territory", "Iraq", "Iran, Islamic Republic of", "Iceland", "Italy", "Jamaica", "Jordan", "Japan", "Kenya", "Kyrgyzstan", "Cambodia", "Kiribati", "Comoros", "Saint Kitts and Nevis", "Korea, Democratic People's Republic of", "Korea, Republic of", "Kuwait", "Cayman Islands", "Kazakhstan", "Lao People's Democratic Republic", "Lebanon", "Saint Lucia", "Liechtenstein", "Sri Lanka", "Liberia", "Lesotho", "Lithuania", "Luxembourg", "Latvia", "Libya", "Morocco", "Monaco", "Moldova, Republic of", "Madagascar", "Marshall Islands", "Macedonia", "Mali", "Myanmar", "Mongolia", "Macau", "Northern Mariana Islands", "Martinique", "Mauritania", "Montserrat", "Malta", "Mauritius", "Maldives", "Malawi", "Mexico", "Malaysia", "Mozambique", "Namibia", "New Caledonia", "Niger", "Norfolk Island", "Nigeria", "Nicaragua", "Netherlands", "Norway", "Nepal", "Nauru", "Niue", "New Zealand", "Oman", "Panama", "Peru", "French Polynesia", "Papua New Guinea", "Philippines", "Pakistan", "Poland", "Saint Pierre and Miquelon", "Pitcairn Islands", "Puerto Rico", "Palestinian Territory", "Portugal", "Palau", "Paraguay", "Qatar", "Reunion", "Romania", "Russian Federation", "Rwanda", "Saudi Arabia", "Solomon Islands", "Seychelles", "Sudan", "Sweden", "Singapore", "Saint Helena", "Slovenia", "Svalbard and Jan Mayen", "Slovakia", "Sierra Leone", "San Marino", "Senegal", "Somalia", "Suriname", "Sao Tome and Principe", "El Salvador", "Syrian Arab Republic", "Swaziland", "Turks and Caicos Islands", "Chad", "French Southern Territories", "Togo", "Thailand", "Tajikistan", "Tokelau", "Turkmenistan", "Tunisia", "Tonga", "Timor-Leste", "Turkey", "Trinidad and Tobago", "Tuvalu", "Taiwan", "Tanzania, United Republic of", "Ukraine", "Uganda", "United States Minor Outlying Islands", "United States", "Uruguay", "Uzbekistan", "Holy See (Vatican City State)", "Saint Vincent and the Grenadines", "Venezuela", "Virgin Islands, British", "Virgin Islands, U.S.", "Vietnam", "Vanuatu", "Wallis and Futuna", "Samoa", "Yemen", "Mayotte", "Serbia", "South Africa", "Zambia", "Montenegro", "Zimbabwe", "Anonymous Proxy", "Satellite Provider", "Other", "Aland Islands", "Guernsey", "Isle of Man", "Jersey", "Saint Barthelemy", "Saint Martin", "Bonaire, Saint Eustatius and Saba", "South Sudan" ); asort($country_list); return $country_list; } function get_country($id = '') { $c_array = country_list(); if (is_numeric($id)) { return $c_array[$id]; } else { return array_search($id, $c_array); } } function send_email($to, $template_name, $vars = array(), $reply = '', $from = '') { $vars = (object) $vars; include('email.templates.php'); if (!is_array($to)) $to = array($to); $email_t = $email_templates[$template_name]; $mail = new PHPMailer(); foreach ($to as $eto) { $mail->AddAddress($eto); } if (!empty($reply)) $mail->AddReplyTo($reply); if (empty($from)) $mail->SetFrom(Config::get('email_from'), 'Advertising9.com'); else $mail->SetFrom($from); $mail->Subject = $email_t['subject']; $mail->MsgHTML($email_t['body']); return $mail->Send(); } function remove_dir($dir) { if (is_dir($dir)) { $it = new RecursiveDirectoryIterator($dir); $files = new RecursiveIteratorIterator($it, RecursiveIteratorIterator::CHILD_FIRST); foreach ($files as $file) { if ($file->getFilename() === '.' || $file->getFilename() === '..') { continue; } if ($file->isDir()) { rmdir($file->getRealPath()); } else { unlink($file->getRealPath()); } } rmdir($dir); } } function clean_dir($dir, $blacklist = array()) { $it = new RecursiveDirectoryIterator($dir); $files = new RecursiveIteratorIterator($it, RecursiveIteratorIterator::CHILD_FIRST); foreach ($files as $file) { if ($file->getFilename() === '.' || $file->getFilename() === '..') { continue; } $file_extension = pathinfo($file->getFilename(), PATHINFO_EXTENSION); if ($file->isFile() && in_array($file_extension, $blacklist)) { unlink($file->getRealPath()); } } } function copy_dir($source, $dest) { if (is_dir($source)) { if (!is_dir($dest)) @mkdir($dest, 0777, true); foreach ( $iterator = new RecursiveIteratorIterator( new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST) as $path => $file ) { if ($file->getFilename() === '.' || $file->getFilename() === '..') { continue; } if ($file->isDir()) { @mkdir($dest . DIRECTORY_SEPARATOR . $iterator->getSubPathName(), 0777, true); } else { @copy($file, $dest . DIRECTORY_SEPARATOR . $iterator->getSubPathName()); } } } } function getOnlineUsers() { //$db = Database::getDatabase(); //return $db->getValue('SELECT COUNT(*) FROM `sessions` WHERE updated_on > "'.(time()-5*60).'"'); mt_srand(ip2long($_SERVER['REMOTE_ADDR']) + time()); return mt_rand(1000, 3000); } function truncate_descr($text, $length = 300) { $text = strip_tags(preg_replace("/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/", "", $text)); $text = preg_replace('!\s+!', ' ', $text); if (strlen($text) > $length) { $text = rtrim(substr($text, 0, strpos(wordwrap($text, $length), "\n"))); } return $text; } function sanitize($string, $force_lowercase = true, $anal = false) { $strip = array("~", "`", "!", "@", "#", "$", "%", "^", "&", "*", "(", ")", "_", "=", "+", "[", "{", "]", "}", "\\", "|", ";", ":", "\"", "'", "‘", "’", "“", "”", "–", "—", "—", "–", ",", "<", ">", "/", "?"); $clean = trim(str_replace($strip, "", strip_tags($string))); $clean = preg_replace('/\s+/', "-", $clean); $clean = ($anal) ? preg_replace("/[^a-zA-Z0-9]/", "", $clean) : $clean; return ($force_lowercase) ? (function_exists('mb_strtolower')) ? mb_strtolower($clean, 'UTF-8') : strtolower($clean) : $clean; } function get_country_by_ip($ip) { include_once(DOC_ROOT . "/geoip/geoip.inc"); $gi = geoip_open(DOC_ROOT . "/geoip/GeoIP.dat", GEOIP_STANDARD); $data = array(); $data['country'] = geoip_country_name_by_addr($gi, $ip); $data['locale'] = strtolower(geoip_country_code_by_addr($gi, $ip)); return $data; } function hightlight_text($keyword, $text_string) { if (!empty($keyword)) return preg_replace("/\b$keyword\b/i", "<span class=\"highlight\">$0</span>", $text_string); return $text_string; } function hightlight_substring_text($keyword, $text_string) { if (!empty($keyword)) return preg_replace("/($keyword)/i", "<span class=\"highlight\">$0</span>", $text_string); return $text_string; } function get_google_link($code) { $google_links = array( 'AC' => 'https://www.google.ac', 'AD' => 'https://www.google.ad', 'AE' => 'http://www.google.ae', 'AF' => 'https://www.google.com.af', 'AG' => 'https://www.google.com.ag', 'AI' => 'http://www.google.com.ai', 'AL' => 'http://www.google.al', 'AM' => 'http://www.google.am', 'AO' => 'http://www.google.co.ao', 'AR' => 'http://www.google.com.ar', 'AS' => 'http://www.google.as', 'AT' => 'https://www.google.at', 'AU' => 'http://www.google.com.au', 'AZ' => 'http://www.google.az', 'BA' => 'http://www.google.ba', 'BD' => 'http://www.google.com.bd', 'BE' => 'http://www.google.be', 'BF' => 'http://www.google.bf', 'BG' => 'http://www.google.bg', 'BH' => 'http://www.google.com.bh', 'BI' => 'http://www.google.bi', 'BJ' => 'http://www.google.bj', 'BN' => 'http://www.google.com.bn', 'BO' => 'https://www.google.com.bo', 'BR' => 'http://www.google.com.br', 'BS' => 'http://www.google.bs', 'BW' => 'http://www.google.co.bw', 'BY' => 'http://www.google.by', 'BZ' => 'http://www.google.com.bz', 'CA' => 'http://www.google.ca', 'KH' => 'http://www.google.com.kh', 'CC' => 'http://www.google.cc', 'CD' => 'http://www.google.cd', 'CF' => 'http://www.google.cf', 'CAT' => 'http://www.google.cat', 'CG' => 'http://www.google.cg', 'CH' => 'http://www.google.ch', 'CI' => 'http://www.google.ci', 'CK' => 'http://www.google.co.ck', 'CL' => 'http://www.google.cl', 'CM' => 'http://www.google.cm', 'CN' => 'http://www.google.cn', 'CO' => 'http://www.google.com.co', 'CR' => 'http://www.google.co.cr', 'CU' => 'http://www.google.com.cu', 'CV' => 'http://www.google.cv', 'CY' => 'http://www.google.com.cy', 'CZ' => 'http://www.google.cz', 'DE' => 'http://www.google.de', 'DJ' => 'http://www.google.dj', 'DK' => 'http://www.google.dk', '.DM' => 'http://www.google.dm', 'DO' => 'http://www.google.com.do', 'DZ' => 'http://www.google.dz', 'EC' => 'http://www.google.com.ec', 'EE' => 'http://www.google.ee', 'EG' => 'http://www.google.com.eg', 'ES' => 'http://www.google.es', '.ET' => 'http://www.google.com.et', 'FI' => 'http://www.google.fi', 'FJ' => 'http://www.google.com.fj', 'FM' => 'http://www.google.fm', 'FR' => 'http://www.google.fr', 'GA' => 'http://www.google.ga', 'GE' => 'http://www.google.ge', 'GF' => 'http://www.google.gf', 'GG' => 'http://www.google.gg', 'GH' => 'http://www.google.com.gh', 'GI' => 'http://www.google.com.gi', 'GL' => 'http://www.google.gl', 'GM' => 'http://www.google.gm', 'GP' => 'http://www.google.gp', 'GR' => 'http://www.google.gr', 'GT' => 'http://www.google.com.gt', 'GY' => 'http://www.google.gy', 'HK' => 'http://www.google.com.hk', 'HN' => 'http://www.google.hn', 'HR' => 'http://www.google.hr', 'HT' => 'http://www.google.ht', 'HU' => 'http://www.google.hu', 'ID' => 'http://www.google.co.id', 'IQ' => 'http://www.google.iq', 'IE' => 'http://www.google.ie', 'IL' => 'http://www.google.co.il', 'IM' => 'http://www.google.im', 'IN' => 'http://www.google.co.in', 'IO' => 'http://www.google.io', 'IS' => 'http://www.google.is', 'IT' => 'http://www.google.it', 'JE' => 'http://www.google.je', 'JM' => 'http://www.google.com.jm', 'JO' => 'http://www.google.jo', 'JP' => 'http://www.google.co.jp', 'KE' => 'http://www.google.co.ke', 'KH' => 'http://www.google.com.kh', 'KI' => 'http://www.google.ki', 'KG' => 'http://www.google.kg', 'KR' => 'http://www.google.co.kr', 'KW' => 'http://www.google.com.kw', 'KZ' => 'http://www.google.kz', 'LA' => 'http://www.google.la', 'LB' => 'http://www.google.com.lb', 'LC' => 'http://www.google.com.lc', 'LI' => 'http://www.google.li', 'LK' => 'http://www.google.lk', 'LS' => 'http://www.google.co.ls', 'LT' => 'http://www.google.lt', 'LU' => 'http://www.google.lu', 'LV' => 'http://www.google.lv', 'LY' => 'http://www.google.com.ly', 'MA' => 'http://www.google.co.ma', 'MD' => 'http://www.google.md', 'ME' => 'http://www.google.me', 'MG' => 'http://www.google.mg', 'MK' => 'http://www.google.mk', 'ML' => 'http://www.google.ml', 'MN' => 'http://www.google.mn', 'MS' => 'http://www.google.ms', 'MT' => 'http://www.google.com.mt', 'MU' => 'http://www.google.mu', 'MV' => 'http://www.google.mv', 'MW' => 'http://www.google.mw', 'MX' => 'http://www.google.com.mx', 'MY' => 'http://www.google.com.my', 'MZ' => 'http://www.google.co.mz', 'NA' => 'http://www.google.com.na', 'NE' => 'http://www.google.ne', 'NF' => 'http://www.google.com.nf', 'NG' => 'http://www.google.com.ng', 'NI' => 'http://www.google.com.ni', 'NL' => 'http://www.google.nl', 'NO' => 'http://www.google.no', 'NP' => 'http://www.google.com.np', 'NR' => 'http://www.google.nr', 'NU' => 'http://www.google.nu', 'NZ' => 'http://www.google.co.nz', 'OM' => 'http://www.google.com.om', 'PA' => 'http://www.google.com.pa', 'PE' => 'http://www.google.com.pe', 'PH' => 'http://www.google.com.ph', 'PK' => 'http://www.google.com.pk', 'PL' => 'http://www.google.pl', 'PG' => 'http://www.google.com.pg', 'PN' => 'http://www.google.pn', 'PR' => 'http://www.google.com.pr', 'PS' => 'http://www.google.ps', 'PT' => 'http://www.google.pt', 'PY' => 'http://www.google.com.py', 'QA' => 'http://www.google.com.qa', 'RO' => 'http://www.google.ro', 'RS' => 'http://www.google.rs', 'RU' => 'http://www.google.ru', 'RW' => 'http://www.google.rw', 'SA' => 'http://www.google.com.sa', 'SB' => 'http://www.google.com.sb', 'SC' => 'http://www.google.sc', 'SE' => 'http://www.google.se', 'SG' => 'http://www.google.com.sg', 'SH' => 'http://www.google.sh', 'SI' => 'http://www.google.si', 'SK' => 'http://www.google.sk', 'SL' => 'http://www.google.com.sl', 'SN' => 'http://www.google.sn', 'SM' => 'http://www.google.sm', 'SO' => 'http://www.google.so', 'ST' => 'http://www.google.st', 'SV' => 'http://www.google.com.sv', 'TD' => 'http://www.google.td', 'TG' => 'http://www.google.tg', 'TH' => 'http://www.google.co.th', 'TJ' => 'http://www.google.com.tj', 'TK' => 'http://www.google.tk', 'TL' => 'http://www.google.tl', 'TM' => 'http://www.google.tm', 'TO' => 'http://www.google.to', 'TN' => 'http://www.google.com.tn', 'TR' => 'http://www.google.com.tr', 'TT' => 'http://www.google.tt', 'TW' => 'http://www.google.com.tw', 'TZ' => 'http://www.google.co.tz', 'UA' => 'http://www.google.com.ua', 'UG' => 'http://www.google.co.ug', 'UK' => 'http://www.google.co.uk', 'US' => 'http://www.google.us', 'UY' => 'http://www.google.com.uy', 'UZ' => 'http://www.google.co.uz', 'VC' => 'http://www.google.com.vc', 'VE' => 'http://www.google.co.ve', 'VG' => 'http://www.google.vg', 'VI' => 'http://www.google.co.vi', 'VN' => 'http://www.google.com.vn', '.VU' => 'http://www.google.vu', 'WS' => 'http://www.google.ws', 'ZA' => 'http://www.google.co.za', 'ZM' => 'http://www.google.co.zm', 'ZW' => 'http://www.google.co.zw', 'MM' => 'http://www.google.com.mm' ); if (array_key_exists(strtoupper($code), $google_links)) return $google_links[strtoupper($code)]; else return 'https://www.google.com'; } function get_ebay_link($code) { $ebay_links = array( "US" => "www.ebay.com", "CA" => "www.ebay.ca", "GB" => "www.ebay.co.uk", "AU" => "www.ebay.com.au", "AT" => "www.ebay.at", "BE" => "www.befr.ebay.be", "FR" => "www.ebay.fr", "DE" => "www.ebay.de", "IT" => "www.ebay.it", "BE" => "www.benl.ebay.be", "NL" => "www.ebay.nl", "ES" => "www.ebay.es", "CH" => "www.ebay.ch", "HK" => "www.ebay.com.hk", "IN" => "www.ebay.in", "IE" => "www.ebay.ie", "MY" => "www.ebay.com.my", "PH" => "www.ebay.ph", "PL" => "www.ebay.pl", "SG" => "www.ebay.com.sg", "SE" => "www.eim.ebay.se" ); if (array_key_exists(strtoupper($code), $ebay_links)) return "http://" . $ebay_links[strtoupper($code)]; else return 'http://www.ebay.com'; } function get_yahoo_link($code) { $yahoo_links = array( "AR" => "http://ar.search.yahoo.com/", "AU" => "http://au.search.yahoo.com/", "BE" => "http://be.search.yahoo.com/", "BR" => "http://br.search.yahoo.com/", "CA" => "http://ca.search.yahoo.com/", "CL" => "http://cl.search.yahoo.com/", "CO" => "http://co.search.yahoo.com/", "DK" => "http://dk.search.yahoo.com/", "DE" => "http://de.search.yahoo.com/", "ES" => "http://es.search.yahoo.com/", "FR" => "http://fr.search.yahoo.com/", "IN" => "http://in.search.yahoo.com/", "ID" => "http://id.search.yahoo.com/", "IE" => "http://ie.search.yahoo.com/", "IT" => "http://it.search.yahoo.com/", "MY" => "http://malaysia.search.yahoo.com/", "MX" => "http://mx.search.yahoo.com/", "NL" => "http://nl.search.yahoo.com/", "NZ" => "http://nz.search.yahoo.com/", "NO" => "http://no.search.yahoo.com/", "PE" => "http://pe.search.yahoo.com/", "PH" => "http://ph.search.yahoo.com/", "PL" => "http://pl.search.yahoo.com/", "QC" => "http://qc.search.yahoo.com/", "RO" => "http://ro.search.yahoo.com/", "SG" => "http://sg.search.yahoo.com/", "ZA" => "http://za.search.yahoo.com/", "FI" => "http://fi.search.yahoo.com/", "SE" => "http://se.search.yahoo.com/", "TR" => "http://tr.search.yahoo.com/", "UK" => "http://uk.search.yahoo.com/", "VE" => "http://ve.search.yahoo.com/", "VN" => "http://vn.search.yahoo.com/", "GR" => "http://gr.search.yahoo.com/", "RU" => "http://ru.search.yahoo.com/", "TH" => "http://th.search.yahoo.com/", "CN" => "http://cn.search.yahoo.com/", "HK" => "http://hk.search.yahoo.com/", "TW" => "http://tw.search.yahoo.com/", "JP" => "http://search.yahoo.co.jp/" ); if (array_key_exists(strtoupper($code), $yahoo_links)) return "http://" . $yahoo_links[strtoupper($code)]; else return 'http://search.yahoo.com'; } function arrayColumnSort() { $n = func_num_args(); $ar = func_get_arg($n - 1); if (!is_array($ar)) return false; for ($i = 0; $i < $n - 1; $i++) $col[$i] = func_get_arg($i); foreach ($ar as $key => $val) foreach ($col as $kkey => $vval) if (is_string($vval)) ${"subar$kkey"}[$key] = $val[$vval]; $arv = array(); foreach ($col as $key => $val) $arv[] = (is_string($val) ? ${"subar$key"} : $val); $arv[] = $ar; call_user_func_array("array_multisort", $arv); return $ar; } function sortlistings($sort, $listings) { // "favourite" // "visited" // "contacted" // "replied" // "discussed" if (count($listings) == 0) return $listings; $db = Database::getDatabase(); $listids = array(); foreach ($listings as $l) { $listids[] = $l->id; } switch ($sort) { case "alexa_rank" : foreach ($listings as $l) { if ($l->alexa_rank == 0 || $l->alexa_rank == '0') { $l->alexa_rank = '2999999999'; } $rank[$l->id] = $l->alexa_rank; } array_multisort($rank, SORT_ASC, $listings); foreach ($listings as $l) { if ($l->alexa_rank == 2999999999 || $l->alexa_rank == '2999999999') { $l->alexa_rank = '0'; } $rank[$l->id] = $l->alexa_rank; } break; case "google_rank" : foreach ($listings as $l) { $rank[$l->id] = $l->google_rank; } array_multisort($rank, SORT_DESC, $listings); break; case "title" : foreach ($listings as $l) { $titlear = array_flip(preg_split('/\s+/', preg_replace('/[^a-z\s]/', '', strtolower($l->title)), NULL, PREG_SPLIT_NO_EMPTY)); if (isset($titlear[strtolower($_GET['singlekw'])])) $rank[$l->id] = $l->title; else unset($listings[$l->id]); } if (count($listings) > 0) array_multisort($rank, SORT_ASC, $listings); break; case "description" : foreach ($listings as $l) { if (preg_match("/\b" . $_GET['singlekw'] . "\b/im", $l->description)) $rank[$l->id] = $l->description; else unset($listings[$l->id]); } if (count($listings) > 0) array_multisort($rank, SORT_ASC, $listings); break; case "url" : foreach ($listings as $l) { if (stripos($l->redirect, $_GET['singlekw']) !== false) $rank[$l->id] = $l->redirect; else unset($listings[$l->id]); } if (count($listings) > 0) array_multisort($rank, SORT_ASC, $listings); break; case "keywords" : foreach ($listings as $l) { // print_r(preg_split('/\s+/', preg_replace('/[^a-z\s]/', '', strtolower($l->keywords)), NULL, PREG_SPLIT_NO_EMPTY)); // echo $l->keywords; // echo "<br />"; // echo "<br /> next"; // echo "<br />"; // echo contains($l->keywords, $_GET['singlekw']) . "POS <br />"; // $titlear = array_flip(preg_split('/\s+/', preg_replace('/[^a-z\s]/', '', strtolower($l->keywords)), NULL, PREG_SPLIT_NO_EMPTY)); // print_r($titlear); // if(isset($titlear[strtolower($_GET['singlekw'])])){ if (stripos($l->keywords, $_GET['singlekw']) !== false) { $rank[$l->id] = $l->keywords; } else unset($listings[$l->id]); } if (count($listings) > 0) array_multisort($rank, SORT_DESC, $listings); break; case "favourite": $favs = $db->getRows("SELECT COUNT(*) as n, listid FROM favlistings WHERE listid IN (" . implode(',', $listids) . ") GROUP BY listid;"); if (count($favs) > 0) { foreach ($favs as $fav) { $favlist[$fav['listid']] = $fav['n']; } foreach ($listings as $l) { $favsort[$l->id] = (int) $favlist[$l->id]; } array_multisort($favsort, SORT_DESC, $listings); } break; case "viewed": foreach ($listings as $l) { $views[$l->id] = $l->views; } array_multisort($views, SORT_DESC, $listings); break; case "contacted": $mess = $db->getRows("SELECT COUNT(*) as n, listid FROM messages WHERE approved = '1' AND parent = '0' AND listid IN (" . implode(',', $listids) . ") GROUP BY listid;"); if (count($mess) > 0) { foreach ($mess as $mes) { $meslist[$mes['listid']] = $mes['n']; } foreach ($listings as $l) { $messort[$l->id] = (int) $meslist[$l->id]; } array_multisort($messort, SORT_DESC, $listings); } break; case "replied": $replies = $db->getRows("SELECT COUNT(*) as n, listid FROM messages WHERE approved = '1' AND parent != '0' AND listid IN (" . implode(',', $listids) . ") GROUP BY listid;"); if (count($replies) > 0) { foreach ($replies as $rep) { $replist[$rep['listid']] = $rep['n']; } foreach ($listings as $l) { $repsort[$l->id] = (int) $replist[$l->id]; } array_multisort($repsort, SORT_DESC, $listings); } break; case "commented" : $disqus = new DisqusAPI(Config::get('disqus_secret')); $threads = $disqus->forums->listThreads(array('forum' => 'advertising9-listing-pages')); $dosort = false; foreach ($listings as $l) { foreach ($threads as $thread) { $tlinkid = explode("/", $thread->link); if ($l->id == end($tlinkid)) { $thlist[$l->id] = $thread->posts; } } $thsort[$l->id] = (int) $thlist[$l->id]; if ((int) $thlist[$l->id] > 0) $dosort = true; } if ($dosort) array_multisort($thsort, SORT_DESC, $listings); break; } return $listings; } function search_kw($q, $s = false, $al = false) { $db = Database::getDatabase(); $matchesByCat = array( 'id' => 0, 'paidkeywords' => 0, 'freekeywords' => 0, 'title' => 0, 'description' => 0, 'url' => 0, 'keywords' => 0 ); if (ctype_digit($q)) { $add_id = "id=" . $q . " OR "; } if (strlen($q) < 5) { //WITH QUERY EXPANSION $listings = DBObject::glob('listing', "SELECT * FROM listings WHERE (" . $add_id . " title LIKE '%$q%' OR description LIKE '%$q%' OR keywords LIKE '%$q%' OR displayurl LIKE '%" . str_replace(' ', '', $q) . "%') AND status='active' AND (approved = '1' OR approved = '3') LIMIT 1000"); } else { //WITH QUERY EXPANSION $listings = DBObject::glob('listing', "SELECT * FROM listings WHERE (" . $add_id . " title LIKE '%" . strtolower($q) . "%' OR description LIKE '%" . strtolower($q) . "%' OR keywords LIKE '%$q%' OR displayurl LIKE '%" . str_replace(' ', '', $q) . "%') AND status='active' AND (approved = '1' OR approved = '3') LIMIT 1000"); // $listings = DBObject::glob('listing', "SELECT * FROM listings WHERE (" . $add_id . " MATCH(title, description) AGAINST('+*" . strtolower($q) . "*' IN BOOLEAN MODE)) AND status='active' AND (approved = '1' OR approved = '3') LIMIT 1000"); // $q = explode(' ', $q); // $q = $q[0]; // $listings = DBObject::glob('listing', "SELECT * FROM listings WHERE (" . $add_id . " title LIKE '%$q%' OR description LIKE '%$q%' OR keywords LIKE '%$q%' OR displayurl LIKE '%".str_replace(' ', '', $q)."%') AND status='active' AND (approved = '1' OR approved = '3') LIMIT 1000"); // $listings = DBObject::glob('listing', "SELECT * FROM listings WHERE (" . $add_id . " MATCH(title, description) AGAINST('+*" . $q . "*' IN BOOLEAN MODE)) AND status='active' AND (approved = '1' OR approved = '3') LIMIT 1000"); } // $listings = DBObject::glob('listing', "SELECT * FROM listings WHERE description LIKE '%".$q."%' AND status='active' AND (approved = '1' OR approved = '3')"); $paidkeywords = DBObject::glob('ListingKeyword', "SELECT * FROM keywords WHERE paid='1' AND keyword LIKE '%" . $q . "%'"); $listingssource = unserialize(serialize($listings)); if ($listings) { if ($paidkeywords) { foreach ($paidkeywords as $pk) { $listpks[$pk->listid][] = $pk->keyword; $pksobj[$pk->listid][$pk->keyword] = $pk; } foreach ($listpks as $pkey => $pks) { if ($listings[$pkey]) { $listings[$pkey]->addColumn('pks', $pks); $listings[$pkey]->addColumn('pksobj', $pksobj[$pkey]); } } } $pager = new Pager(@$_GET['page'], 10, count($listings)); if (isset($_GET['page']) && $pager->page != $_GET['page']) exit(); $foundInID = array(); $foundInPaidKeywords = array(); $foundInFreeKeywordsPaidList = array(); $foundInFreeKeywords = array(); $foundInKeywords = array(); $foundInTitle = array(); $foundInDescr = array(); $foundInURL = array(); $foundInVisibility = array(); //if query is a number if (is_numeric($q) && array_key_exists($q, $listings)) { $listings[$q]->addColumn('type', 'id'); $matchesByCat['id'] ++; $foundInID[] = $listings[$q]; unset($listings[$q]); } $pkbid = array(); $pkcreated = array(); foreach ($listings as $key => $value) { if (array_key_exists('pks', $value->columns)) { if (in_array(strtolower($q), array_map('strtolower', $value->pks))) { if ($value->pksobj[$q]->bid > 0) { //query found in whole word in paid keywords $pkbid[$key] = $value->pksobj[$q]->bid; $pkcreated[$key] = $value->pksobj[$q]->paidon; $value->addColumn('type', 'paidkeywords'); $foundInPaidKeywords[$key] = $value; $matchesByCat['paidkeywords'] ++; unset($listings[$key]); } else { //query found in free keywords - whole word if ($value->paid_amount > 0) { $prioritypaid[$key] = $value->priority + 1; $amountpaid[$key] = $value->paid_amount; $lcreatedpaid[$key] = $value->createdon; $value->addColumn('type', 'freekeywords'); $foundInFreeKeywordsPaidList[$key] = $value; $matchesByCat['freekeywords'] ++; unset($listings[$key]); } else { $priority[$key] = $value->priority + 1; $amount[$key] = $value->paid_amount; $lcreated[$key] = $value->createdon; $value->addColumn('type', 'freekeywords'); $foundInFreeKeywords[$key] = $value; $matchesByCat['freekeywords'] ++; unset($listings[$key]); } if (!isset($_GET['page'])) { $listingssource[$key]->priority++; $listingssource[$key]->save(); } } } } } //sort by bid amount array_multisort($pkbid, SORT_DESC, $pkcreated, SORT_ASC, $foundInPaidKeywords); if (count($foundInFreeKeywords) > 0) { //rotation array_multisort($amount, SORT_DESC, $priority, SORT_DESC, $lcreated, SORT_ASC, $foundInFreeKeywords); if (!isset($_GET['page']) && !$s && $al) { foreach ($foundInFreeKeywords as $key => $fkl) { if ($key == 0) { $listingssource[$fkl->id]->priority = 0; $listingssource[$fkl->id]->save(); $foundInFreeKeywords[$key] = $fkl; $priority[$key] = 0; break; } } array_multisort($amount, SORT_DESC, $priority, SORT_DESC, $lcreated, SORT_ASC, $foundInFreeKeywords); } } if (count($foundInFreeKeywordsPaidList) > 0) { array_multisort($amountpaid, SORT_DESC, $prioritypaid, SORT_DESC, $lcreatedpaid, SORT_ASC, $foundInFreeKeywordsPaidList); if (!isset($_GET['page']) && !$s && $al) { foreach ($foundInFreeKeywordsPaidList as $key => $fkl) { if ($key == 0) { $listingssource[$fkl->id]->priority = 0; $listingssource[$fkl->id]->save(); $foundInFreeKeywordsPaidList[$key] = $fkl; $priority[$key] = 0; break; } } //rotation array_multisort($amountpaid, SORT_DESC, $prioritypaid, SORT_DESC, $lcreatedpaid, SORT_ASC, $foundInFreeKeywordsPaidList); } } $foundInFreeKeywords = array_merge($foundInFreeKeywordsPaidList, $foundInFreeKeywords); //query found in sites title - whole word $lcreated = array(); $amount = array(); foreach ($listings as $key => $value) { // $titlear = array_flip(preg_split('/\s+/', preg_replace('/[^a-z\s]/', '', strtolower($value->title)), NULL, PREG_SPLIT_NO_EMPTY)); // if (isset($titlear[strtolower($q)])) { if (preg_match("/\b$q\b/im", $value->title)) { $value->addColumn('type', 'title'); // $t = mysql_fetch_assoc(mysql_query("SELECT count(*) as cnt FROM listings WHERE title LIKE '%" . mysql_real_escape_string($q) . "%'")); $matchesByCat['title'] ++; $foundInTitle[$key] = $value; $amount[$key] = $value->paid_amount; $lcreated[$key] = $value->createdon; unset($listings[$key]); } } array_multisort($amount, SORT_DESC, $lcreated, SORT_ASC, $foundInTitle); //query found in description - whole words $lcreated = array(); $amount = array(); foreach ($listings as $key => $value) { if (preg_match("/\b$q\b/im", $value->description)) { $value->addColumn('type', 'description'); // $d = mysql_fetch_assoc(mysql_query("SELECT count(*) as dsc FROM listings WHERE description LIKE '%" . mysql_real_escape_string($q) . "%'")); $matchesByCat['description'] ++; $foundInDescr[$key] = $value; $amount[$key] = $value->paid_amount; $lcreated[$key] = $value->createdon; unset($listings[$key]); } } array_multisort($amount, SORT_DESC, $lcreated, SORT_ASC, $foundInDescr); $lcreated = array(); $amount = array(); $countylist = country_list(); if (in_array(strtolower($q), array_map('strtolower', $countylist))) { foreach ($listings as $key => $value) { if (strtolower($value->country) == strtolower($q)) { $value->addColumn('type', 'visibility'); $matchesByCat['visibility'] ++; $foundInVisibility[$key] = $value; $amount[$key] = $value->paid_amount; $lcreated[$key] = $value->createdon; unset($listings[$key]); } } array_multisort($amount, SORT_DESC, $lcreated, SORT_ASC, $foundInVisibility); } //query found in sites url - substring $lcreated = array(); $amount = array(); foreach ($listings as $key => $value) { if (stripos($value->redirect, $q) !== false) { $value->addColumn('type', 'url'); // $u = mysql_fetch_assoc(mysql_query("SELECT count(*) as cnt FROM listings WHERE redirect LIKE '%" . mysql_real_escape_string(str_replace(' ', '', $q)) . "%'")); $matchesByCat['url'] ++; $foundInURL[$key] = $value; $amount[$key] = $value->paid_amount; $lcreated[$key] = $value->createdon; unset($listings[$key]); } } array_multisort($amount, SORT_DESC, $lcreated, SORT_ASC, $foundInURL); //sort by keywords $lcreated = array(); $amount = array(); foreach ($listings as $key => $value) { if (stripos($value->keywords, $q) !== false) { $value->addColumn('type', 'keywords'); // $u = mysql_fetch_assoc(mysql_query("SELECT count(*) as cnt FROM listings WHERE keywords LIKE '%" . mysql_real_escape_string($q) . " %'")); $matchesByCat['keywords'] ++; $foundInKeywords[$key] = $value; $amount[$key] = $value->paid_amount; $lcreated[$key] = $value->createdon; unset($listings[$key]); } } array_multisort($amount, SORT_DESC, $lcreated, SORT_ASC, $foundInKeywords); if (!isset($_GET['page']) && !$s && $al) { $country = get_country_by_ip($_SERVER['REMOTE_ADDR']); $db->query('INSERT INTO searches SET `keyword` = :q:, total = 1, laston = UNIX_TIMESTAMP(NOW()), `country`=:c: ON DUPLICATE KEY UPDATE total = total+1, laston=UNIX_TIMESTAMP(NOW())', array('q' => $_GET['q'], 'c' => $country['country'])); } $listings = array(); $listings = array_merge($foundInID, $foundInPaidKeywords, $foundInFreeKeywords, $foundInTitle, $foundInDescr, $foundInVisibility, $foundInURL, $foundInKeywords); $endlisting = array(); foreach ($listings as $l) { $endlisting[$l->id] = $l; } $listings = $endlisting; $listings = sortlistings(($s ? $s : $_GET['sort']), $endlisting); unset($endlisting); $locallistings = array(); if (count($listings) > 0) { foreach ($listings as $k => $l) { if ($l->country == $_SESSION['country']) { $locallistings[] = $l; unset($listings[$k]); } } $result = array( 'global' => array( 'length' => count($listings) ), 'local' => array( 'length' => count($locallistings) ), 'matchesCount' => $matchesByCat ); $result['global']['listings'] = array_values(array_slice($listings, $pager->firstRecord, $pager->perPage, true)); $result['local']['listings'] = array_values(array_slice($locallistings, $pager->firstRecord, $pager->perPage, true)); } } return $result; } function get_html_from_url($url) { $agent = 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.94 Safari/537.36'; $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_VERBOSE, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_USERAGENT, $agent); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_HTTPHEADER, array("Accept-Language: en-US;q=0.6,en;q=0.4")); $result = curl_exec($ch); $info = curl_getinfo($ch); curl_close($ch); return $result; } function save_searched($kw) { global $Auth; $skw = new Keyword(); $skw->select($kw, 'keyword'); if ($skw->ok()) { $skw->total++; $skw->laston = time(); } else { $skw->keyword = $kw; $skw->total = 1; } $country = get_country_by_ip($_SERVER['REMOTE_ADDR']); $skw->country = $country['country']; /* if (strlen(trim($skw->country)) == 0) $skw->country = "United States"; */ $skw->save(); if ($Auth->id) { $uss = DBObject::glob('UserSearches', "SELECT * FROM user_searches WHERE userid = '{$Auth->id}' AND keywordid = '{$skw->id}' ORDER BY searchedon DESC"); if (count($uss) > 0) { $us = array_shift($uss); $us->searchedon = time(); } else { $us = new UserSearches(); $us->keywordid = $skw->id; $us->userid = $Auth->id; $us->searchedon = time(); } $us->save(); } } function get_site_screenshot($url, $uploaddir, $height = '500') { $fields_string = array( "web2shot_url" => $url, "size" => "1024 x {$height}", "format" => "JPG" ); $agent = 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.94 Safari/537.36'; $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_VERBOSE, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_USERAGENT, $agent); curl_setopt($ch, CURLOPT_URL, 'http://www.sciweavers.org/process_form_web2shot'); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_string); curl_setopt($ch, CURLOPT_HTTPHEADER, array("Accept-Language: en-US;q=0.6,en;q=0.4")); $result = curl_exec($ch); // var_dump($result);exit; curl_close($ch); $scsh = explode('href=\"/download/', $result); $scsh = explode('\">Download', $scsh[1]); $iurl = 'http://www.sciweavers.org/download/' . $scsh[0]; $fname = 'main_' . time() . '.jpg'; if (!empty($scsh[0])) { @mkdir($uploaddir, 0777, true); $mainimg = PhpThumbFactory::create($iurl, array('jpegQuality' => 90)); $mainimg->resize(500, 500); $mainimg->save($uploaddir . $fname, 'jpg'); $favicon = PhpThumbFactory::create($iurl); $favicon->adaptiveResize(16, 16); $favicon->save($uploaddir . 'favicon.png', 'png'); } return $fname; } function is_robot() { $ua = $_SERVER["HTTP_USER_AGENT"]; $robots = require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "robots.php"); foreach ($robots as $regex) { if (preg_match('`' . $regex . '`i', $ua)) { return true; } } return false; } /** * @return array */ function from_search_engine() { $referrer = urldecode($_SERVER["HTTP_REFERER"]); $search_engines = require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "search-engines.php"); foreach ($search_engines as $rule => $name) { if (preg_match('~' . $rule . '~i', $referrer, $matches)) { return array( "search_engine" => $name, "term" => $matches[1] ); } } return FALSE; } //-------------------------------------// // Redirection function Added by Waqas // //-------------------------------------// setlocale(LC_ALL, 'en_US.UTF8'); function toAscii($str, $replace = array(), $delimiter = '-') { if (!empty($replace)) { $str = str_replace((array) $replace, ' ', $str); } $clean = iconv('UTF-8', 'ASCII//TRANSLIT', $str); $clean = preg_replace("/[^a-zA-Z0-9\/_|+ -]/", '', $clean); $clean = trim($clean, '-'); $clean = preg_replace("/[\/_|+ -]+/", $delimiter, $clean); return $clean; } function url_rewrite($str = null, $id = null) { $_SESSION[toAscii($str)] = $id; return toAscii($str); } function status301($url) { @header("HTTP/1.0 301 Moved Permanently"); @header("status: 301 Moved Permanently"); @header("Location: {$url}"); die; } function url_userdir($user_id) { $max_per_folder = 31998; $subdir = 1; while (1) { if ($user_id <= $max_per_folder) { $userdir = "uploads/B$subdir/$user_id"; break; } $max_per_folder += $max_per_folder; $subdir++; } return $userdir; } function checkImages($url, $count = 1) { if (substr(trim($url), -1) == '/') { $url = substr(trim($url), -1); } $html = file_get_contents($url); $return = array(); $doc = new DOMDocument(); @$doc->loadHTML($html); $tags = $doc->getElementsByTagName('img'); $skip = true; foreach ($tags as $tag) { $src = $tag->getAttribute('src'); $alt = $tag->getAttribute('alt'); if (strpos($src, "googleads") !== false) continue; if (substr(trim($src), 0, 1) == '/') $imgUrl = $url . $src; else $imgUrl = $src; $urlImg = @get_headers($imgUrl); print_r($urlImg); if (@$urlImg[0] == 'HTTP/1.1 200 OK') { list($width, $height, $type, $attr) = getimagesize($imgUrl); if ($width > 100 && $height > 100) { if ($count > 1 && $skip) { $skip = false; continue; } if (count($return) > $count) break; $return[] = array('src'=>$imgUrl,'alt'=>$alt); } } } return $return; } function checkImagesInFolder($l, $go = false) { if (trim($l->redirect) || trim($l->displayurl)) { $url = ''; $images = array(); $fimg = ''; if (trim($l->displayurl)) { if (substr(trim($l->displayurl), 0, 5) == 'http:' || substr(trim($l->displayurl), 0, 6) == 'https:') $url = trim($l->displayurl); elseif (substr(trim($l->prefix), 0, 5) == 'http:' || substr(trim($l->prefix), 0, 6) == 'https:') $url = trim($l->prefix) . trim($l->displayurl); else $url = "http://" . trim($l->displayurl); }elseif (trim($l->redirect)) { if (substr(trim($l->redirect), 0, 5) == 'http:' || substr(trim($l->redirect), 0, 6) == 'https:') $url = trim($l->redirect); elseif (substr(trim($l->prefix), 0, 5) == 'http:' || substr(trim($l->prefix), 0, 6) == 'https:') $url = trim($l->prefix) . trim($l->redirect); else $url = "http://" . trim($l->redirect); } if (trim($url)) { if (strlen(trim($l->mainimg)) == 0 || $go) { $images = checkImages($url); if (count($images) > 0) { $fimg = $images[0]['src']; if(mysql_query("UPDATE listings SET mainimg = '" . $images[0]['src'] . "' WHERE id = " . $l->id)) echo 'Main Img Updated'.$l->id."<br />".PHP_EOL; } } if (strlen(trim($l->addimg)) == 0 || $go) { $images = checkImages($url, 5); if (count($images) > 0) { if ($fimg == '') $fimg = $images[0]['src']; $addimgs = array(); foreach ($images as $k => $v) { $addimgs[] = array('src' => $v['src'], 'des' => $v['alt']); } if(mysql_query("UPDATE listings SET addimg = '" . json_encode($addimgs) . "' WHERE id = " . $l->id)) echo 'Add Img Updated'.$l->id."<br />".PHP_EOL; } } } return $fimg; } }