uawdijnntqw1x1x1
IP : 216.73.216.186
Hostname : webd009.cluster130.gra.hosting.ovh.net
Kernel : Linux webd009.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pressec
/
www
/
ads--temp-pour-eviter-les-spams
/
lib
/
RV.php
/
/
<?php /* +---------------------------------------------------------------------------+ | Revive Adserver | | http://www.revive-adserver.com | | | | Copyright: See the COPYRIGHT.txt file. | | License: GPLv2 or later, see the LICENSE.txt file. | +---------------------------------------------------------------------------+ */ require_once RV_PATH . '/lib/pear/PEAR.php'; /** * The core Revive Adserver class, providing methods that are useful everywhere! * * @package ReviveAdserver */ class RV { /** * A method to temporarily disable PEAR error handling by * pushing a null error handler onto the top of the stack. * * @static */ static function disableErrorHandling() { PEAR::pushErrorHandling(null); } /** * A method to re-enable PEAR error handling by popping * a null error handler off the top of the stack. * * @static */ static function enableErrorHandling() { // Ensure this method only acts when a null error handler exists $stack = &$GLOBALS['_PEAR_error_handler_stack']; list($mode, $options) = $stack[sizeof($stack) - 1]; if (is_null($mode) && is_null($options)) { PEAR::popErrorHandling(); } } /** * A method to get the Revive Adserver configuration file details. * * @static * @return array */ static function getAppConfig() { return $GLOBALS['_MAX']['CONF']; } /** * A method to strip unwanted ending tags from a Revive Adsaerver version * string. * * @static * @param string $version The original version string. * @param array $aAllow An array of allowed tags * @return string The stripped version string. */ static function stripVersion($version, $aAllow = null) { $allow = is_null($aAllow) ? '' : '|'.join('|', $aAllow); return preg_replace('/^v?(\d+.\d+.\d+(?:-(?:beta(?:-rc\d+)?|rc\d+'.$allow.'))?).*$/i', '$1', $version); } } ?>
/home/pressec/www/ads--temp-pour-eviter-les-spams/lib/RV.php