⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.72
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
View File Name :
Stringprep.php
* Copyright 2014-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (GPLv3). If you * did not receive this file, see http://opensource.org/licenses/gpl-3.0.html. * * @category Horde * @copyright 2012-2015 Lorenz Schori * @copyright 2014-2017 Horde LLC * @license http://opensource.org/licenses/gpl-3.0.html GPL-3.0 * @package Stringprep */ /** * Horde wrapper around the znerol/php-stringprep package - a PHP * implementation of RFC 3454 - Preparation of Internationalized Strings * ("stringprep"). * * @author Lorenz Schori
* @author Michael Slusarz
* @category Horde * @copyright 2012-2015 Lorenz Schori * @copyright 2014-2017 Horde LLC * @license http://opensource.org/licenses/gpl-3.0.html GPL-3.0 * @link https://github.com/znerol/Stringprep * @package Stringprep */ class Horde_Stringprep { /** * Ensure that the Stringprep libraries are autoloaded. */ public static function autoload() { if (file_exists(__DIR__ . '/Stringprep/vendor/autoload.php')) { require_once __DIR__ . '/Stringprep/vendor/autoload.php'; } else { require_once __DIR__ . '/../../bundle/vendor/autoload.php'; } } }