⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
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
/
Rdo
/
Query
/
Edit File: Literal.php
<?php /** * @category Horde * @package Rdo */ /** * Horde_Rdo literal query string object. * * If you need to pass a string that should not be quoted into a * Horde_Rdo_Query object, wrap it in a Horde_Rdo_Query_Literal object * and it will not be quoted or escaped. Note that of course you need * to be very careful about introducing user input or any other * untrusted input into these objects. * * Example: * $literal = new Horde_Rdo_Query_Literal('MAX(column_name)'); * * @category Horde * @package Rdo */ class Horde_Rdo_Query_Literal { /** * SQL literal string. * * @var string */ protected $_string; /** * Instantiate a literal, which is just a string stored as * an instance member variable. * * @param string $string The string containing an SQL literal. */ public function __construct($string) { $this->_string = (string)$string; } /** * @return string The SQL literal stored in this object. */ public function __toString() { return $this->_string; } }
Simpan