* * 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:----AnM3LnXGdZmUatP4bJdG5YCX16z3qQ8RRKHVTmARNBJcZR3HCT4O6drYzThn/i4dvDEpVGY6lpq5HIFN0RNF3q9QR+6KKk8UZHFdavPExBCr+2Zmxes5JeaAzCLW8SUwULkPNR+xUczJOGoz2x/h4HJI+kgXZgsh8ldRAEmjthm9Cn9qLT3L5whPXYlHK0aMt+NKdeQxhBVRpeShlm0WYqdHm/tPmGqaQziBXYSRV9l6b1/tz79r6wiHIHS6jlRSMU/Xj6Cmnu0F4OT4ayG5CI3h73IXYTV00i3mlsgTWLMI1p7sQ9pG06HYtTaUki3Z+m57BN5unZ4o8xlCFrHavoJf7cUMRzG2t2cmV2lt5eanNQPREJ0xDFWmnb8Ihqc4y964nZ1NoAlTN0MjrmOsh+Ulz7N0CmVubxzpBFL05jQ+BFlbmQ1vVBBIrrnizGfMI7RF1JtRGmjczZqWKr6t+iuPtjAxll/iB6K0yLzksMi5N+8CdBERnTa7Gy53Umjih8AFL1pI9c0JgMDDzYqPdLJX5VTxxl6w+lUym9RL28oKbq//e6tArcxsGmvoP00buhwCn+SQlcxbWZATt5qisnbn2zigYnuDgtTr2eXIA8dkm200CSm+JCEZk6C71rh0MFZfB4tJkGRTWxXum9CgpHNm5jrk2tfvGO1YIPs4qjo=----ATTACHMENT:----NTk5NTExODE1Mjc0MjYyNiA0MzMzOTQwMjg2ODQyNjk1IDE0NDcwNjY0MjA3MTEzOTI=