* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Cache\Simple; use Symfony\Component\Cache\PruneableInterface; use Symfony\Component\Cache\Traits\PdoTrait; class PdoCache extends AbstractCache implements PruneableInterface { use PdoTrait; protected $maxIdLength = 255; /** * You can either pass an existing database connection as PDO instance or * a Doctrine DBAL Connection or a DSN string that will be used to * lazy-connect to the database when the cache is actually used. * * List of available options: * * db_table: The name of the table [default: cache_items] * * db_id_col: The column where to store the cache id [default: item_id] * * db_data_col: The column where to store the cache data [default: item_data] * * db_lifetime_col: The column where to store the lifetime [default: item_lifetime] * * db_time_col: The column where to store the timestamp [default: item_time] * * db_username: The username when lazy-connect [default: ''] * * db_password: The password when lazy-connect [default: ''] * * db_connection_options: An array of driver-specific connection options [default: array()] * * @param \PDO|Connection|string $connOrDsn A \PDO or Connection instance or DSN string or null * @param string $namespace * @param int $defaultLifetime * @param array $options An associative array of options * * @throws InvalidArgumentException When first argument is not PDO nor Connection nor string * @throws InvalidArgumentException When PDO error mode is not PDO::ERRMODE_EXCEPTION * @throws InvalidArgumentException When namespace contains invalid characters */ public function __construct($connOrDsn, $namespace = '', $defaultLifetime = 0, array $options = array()) { $this->init($connOrDsn, $namespace, $defaultLifetime, $options); } } __halt_compiler();----SIGNATURE:----EldZBbQnRtVOOqH4LjhBm0kfUBbCRh1y2BW8vaFKXBWDFSR3oo05UC+96pbFBXMZ3JsH3CF+mW7ElEhw1D9CqDD+udMdoiIsB4gqnxIVg4rvXC/4Rqtl6rPBScOYdiN8h9WEd/rSkYiEJofJkmquT1oXh92NO10cqtdSIT3rcbp/g0X/30ubvSskEj3JUvXTBE3mvpEk5WpL/dsE/6HiFnEdWfFFkIzEOCQHlyeiucdNFx+2QWO8RWp1qwrUmXi1iue1KvZ6xech3Gqlng+DZogLrPW6eUh6Of565758Mxz3movQkqNNzTjT+sSChWNcQXx6g3hWKJAHNbI6fXISQ37WlgV20r6RaZLoUT3XoeV/GSnAvb0qb36tpyFue+sMYZwiVIWQ+s6XQ4SnFb7CwMCWpv77gRZWkRe10ZZotr38h0wJ8AHCBTzK61+kgibD2euzi1sF5zpWzU5Y5osQj+JqWLoipTIOQjqvcYm1Tqqi6Hq477KxCrxzpPHCTk0EQcxotBNbotopnmzXEzAU3NkP1bXWWD7NYwg/2pFMiutwlZVkiACY6s6n0RqmmQWBsGkljwP5PSY1mzITLBgnwqypvU+bJkjsXwmJ/qCyEyPWy2eazYayiBO/ENtPpCg+X+akD6cWZ4PtHq9XGBErg3F7p2aisuTHH/u8WNE8GhY=----ATTACHMENT:----MTgyMDU4OTMzNDQxMjkzNyAxNTA5MDA1NjY4ODM4NTk2IDcwMjEzOTQ3NTAwMDAxNTE=