Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/main/lib/data/ |
Upload File : |
<?php /** * Bitrix Framework * @package bitrix * @subpackage main * @copyright 2001-2014 Bitrix */ namespace Bitrix\Main\Data; /** * Class Connection * * Abstarct base class for data connections. */ abstract class Connection { /** @var resource */ protected $resource; protected $isConnected = false; protected $configuration; public function __construct(array $configuration) { $this->configuration = $configuration; } /** * Connects to data source. */ public function connect() { $this->isConnected = false; $this->connectInternal(); } /** * Disconects from data source. */ public function disconnect() { $this->disconnectInternal(); } /** * Returns the resource of the connection. * * @return resource */ public function getResource() { $this->connectInternal(); return $this->resource; } /** * Returns the state of the connection. * * @return bool */ public function isConnected() { return $this->isConnected; } abstract protected function connectInternal(); abstract protected function disconnectInternal(); /** * Returns the array with the connection parameters. * * @return array */ public function getConfiguration() { return $this->configuration; } /** * Returns max packet length to send to or receive from the database server. * * @return int */ public function getMaxAllowedPacket() { return PHP_INT_MAX; } }