![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-db/src/Adapter/Platform/ |
<?php namespace Laminas\Db\Adapter\Platform; interface PlatformInterface { /** * Get name * * @return string */ public function getName(); /** * Get quote identifier symbol * * @return string */ public function getQuoteIdentifierSymbol(); /** * Quote identifier * * @param string $identifier * @return string */ public function quoteIdentifier($identifier); /** * Quote identifier chain * * @param string|string[] $identifierChain * @return string */ public function quoteIdentifierChain($identifierChain); /** * Get quote value symbol * * @return string */ public function getQuoteValueSymbol(); /** * Quote value * * Will throw a notice when used in a workflow that can be considered "unsafe" * * @param string $value * @return string */ public function quoteValue($value); /** * Quote Trusted Value * * The ability to quote values without notices * * @param scalar $value * @return string */ public function quoteTrustedValue($value); /** * Quote value list * * @param string|string[] $valueList * @return string */ public function quoteValueList($valueList); /** * Get identifier separator * * @return string */ public function getIdentifierSeparator(); /** * Quote identifier in fragment * * @param string $identifier * @param array $additionalSafeWords * @return string */ public function quoteIdentifierInFragment($identifier, array $additionalSafeWords = []); }