Kernel : Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
Disable function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Safe mode : OFF
Host : diestoffstrasse.com | Server ip : 127.0.0.1 | Your ip : 127.0.0.1 | Time @ Server : 24 Aug 2025 03:15:52
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/DB/Statement/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/DB/Statement/Parameter.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\DB\Statement; /** * Magento DB Statement Parameter * * Used to transmit specific information about parameter value binding to be bound the right * way to the query. * Most used properties and methods are defined in interface. Specific things for concrete DB adapter can be * transmitted using 'addtional' property (\Magento\Framework\DataObject) as a container. * * @author Magento Core Team <core@magentocommerce.com> */ class Parameter { /** * Actual parameter value * * @var mixed */ protected $_value = null; /** * Value is a BLOB. * * A shortcut setting to notify DB adapter, that value must be bound in a default way, as adapter binds * BLOB data to query placeholders. If FALSE, then specific settings from $_dataType, $_length, * $_driverOptions will be used. * @var bool */ protected $_isBlob = false; /** * Data type to set to DB driver during parameter bind * @var mixed */ protected $_dataType = null; /** * Length to set to DB driver during parameter bind * @var mixed */ protected $_length = null; /** * Specific driver options to set to DB driver during parameter bind * @var mixed */ protected $_driverOptions = null; /** * Additional information to be used by DB adapter internally * @var \Magento\Framework\DataObject */ protected $_additional = null; /** * Inits instance * * @param mixed $value */ public function __construct($value) { $this->_value = $value; $this->_additional = new \Magento\Framework\DataObject(); return $this; } /** * Sets parameter value. * * @param mixed $value * @return $this */ public function setValue($value) { $this->_value = $value; return $this; } /** * Gets parameter value. * * @return mixed */ public function getValue() { return $this->_value; } /** * Sets, whether parameter is a BLOB. * * FALSE (default) means, that concrete binding options come in dataType, length and driverOptions properties. * TRUE means that DB adapter must ignore other options and use adapter's default options to bind this parameter * as a BLOB value. * * @param bool $isBlob * @return $this */ public function setIsBlob($isBlob) { $this->_isBlob = $isBlob; return $this; } /** * Gets, whether parameter is a BLOB. * See setIsBlob() for returned value explanation. * * @return bool * * @see setIsBlob * @SuppressWarnings(PHPMD.BooleanGetMethodName) */ public function getIsBlob() { return $this->_isBlob; } /** * Sets data type option to be used during binding parameter value. * * @param mixed $dataType * @return $this */ public function setDataType($dataType) { $this->_dataType = $dataType; return $this; } /** * Gets data type option to be used during binding parameter value. * * @return mixed */ public function getDataType() { return $this->_dataType; } /** * Sets length option to be used during binding parameter value. * * @param mixed $length * @return $this */ public function setLength($length) { $this->_length = $length; return $this; } /** * Gets length option to be used during binding parameter value. * * @return mixed */ public function getLength() { return $this->_length; } /** * Sets specific driver options to be used during binding parameter value. * * @param mixed $driverOptions * @return $this */ public function setDriverOptions($driverOptions) { $this->_driverOptions = $driverOptions; return $this; } /** * Gets driver options to be used during binding parameter value. * * @return mixed */ public function getDriverOptions() { return $this->_driverOptions; } /** * Sets additional information for concrete DB adapter. * Set there any data you want to pass along with query parameter. * * @param \Magento\Framework\DataObject $additional * @return $this */ public function setAdditional($additional) { $this->_additional = $additional; return $this; } /** * Gets additional information for concrete DB adapter. * * @return \Magento\Framework\DataObject */ public function getAdditional() { return $this->_additional; } /** * Returns representation of a object to be used in string contexts * * @return string */ public function __toString() { return (string)$this->_value; } /** * Returns representation of a object to be used in string contexts * * @return string */ public function toString() { return $this->__toString(); } }