# PHP Data Objects (PDO)

PHP Data Objects (PDO) is a PHP extension that provides a lightweight, consistent interface and data-access abstraction layer for accessing databases.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Announcing Laravel Support and PHP PDO Interface

DevFeed: [Announcing Laravel Support and PHP PDO Interface](<https://devfeed.tech/articles/announcing-laravel-support-and-php-pdo-interface-5889.md>)

Original publisher: [Read original article](<https://turso.tech/blog/announcing-laravel-support>)

Author: Levy Albuquerque

Published: 2025-01-09T00:00:00Z

Content type: release

Language: en

Sources: [Turso Blog](<https://devfeed.tech/sources/turso-blog.md>)

Topics: [Laravel](<https://devfeed.tech/topics/laravel.md>), [Turso](<https://devfeed.tech/topics/turso.md>), [PHP](<https://devfeed.tech/topics/php.md>), [libSQL](<https://devfeed.tech/topics/libsql.md>), [PHP Data Objects (PDO)](<https://devfeed.tech/topics/pdo.md>), [Composer](<https://devfeed.tech/topics/composer.md>), [Eloquent ORM](<https://devfeed.tech/topics/eloquent.md>), [Object-relational mapping](<https://devfeed.tech/topics/orm.md>), [SQLite](<https://devfeed.tech/topics/sqlite.md>), [Embeddings](<https://devfeed.tech/topics/embeddings.md>), [Query (disambiguation)](<https://devfeed.tech/topics/query.md>), [migration](<https://devfeed.tech/topics/migration.md>)

Tags: [database](<https://devfeed.tech/tags/database.md>), [embeddings](<https://devfeed.tech/tags/embeddings.md>), [features](<https://devfeed.tech/tags/features.md>), [laravel](<https://devfeed.tech/tags/laravel.md>), [libsql](<https://devfeed.tech/tags/libsql.md>), [orm](<https://devfeed.tech/tags/orm.md>), [php](<https://devfeed.tech/tags/php.md>), [recommendation-system](<https://devfeed.tech/tags/recommendation-system.md>), [sdk](<https://devfeed.tech/tags/sdk.md>), [sdks](<https://devfeed.tech/tags/sdks.md>), [sqlite](<https://devfeed.tech/tags/sqlite.md>), [turso](<https://devfeed.tech/tags/turso.md>)

### AI overview

Turso announces official Laravel support through the open-source libsql-laravel adapter and PHP PDO interface. The technical preview integrates with Laravel's database layer, supports local SQLite and Turso configurations, and removes the need for custom PHP extensions. The article also demonstrates migrations, Eloquent models, vector embeddings, and similarity searches for a movie recommendation system.

### Source excerpt

Use Turso natively with Laravel through our new 'libsql-laravel' adapter and PHP PDO interface. No custom PHP extensions, just a database URL and auth token.

## Laravel v6.13.0 released

DevFeed: [Laravel v6.13.0 released](<https://devfeed.tech/articles/laravel-v6-13-0-released-3840.md>)

Original publisher: [Read original article](<https://laravel.com/blog/laravel-v6-13-0-released>)

Author: Laravel Team

Published: 2020-01-28T18:31:00Z

Content type: release

Language: en

Sources: [Laravel Blog](<https://devfeed.tech/sources/laravel-blog.md>)

Topics: [Laravel](<https://devfeed.tech/topics/laravel.md>), [sql-server](<https://devfeed.tech/topics/sql-server.md>), [PHP Data Objects (PDO)](<https://devfeed.tech/topics/pdo.md>), [Redis](<https://devfeed.tech/topics/redis.md>)

Tags: [laravel](<https://devfeed.tech/tags/laravel.md>), [redis](<https://devfeed.tech/tags/redis.md>), [release](<https://devfeed.tech/tags/release.md>), [sql](<https://devfeed.tech/tags/sql.md>)

### AI overview

Laravel v6.13.0 was released on January 28, 2020. The release includes additions, formatting and FTP driver support, fixes for migrations on SQL Server and PDO usage, corrected Redis broadcast channel names, and a timeout-handler change.

### Source excerpt

Laravel v6.13.0 is released in 2020/01/28, here are the changes we`ve merged into this release.

## Keeping in sync: Sharing sessions between Symfony applications

DevFeed: [Keeping in sync: Sharing sessions between Symfony applications](<https://devfeed.tech/articles/keeping-in-sync-sharing-sessions-between-symfony-applications-27931.md>)

Original publisher: [Read original article](<https://tech.trivago.com/post/2015-08-26-writing-to-legacy-session/>)

Author: Moein Akbarof Follow

Published: 2015-08-26T00:00:00Z

Content type: tutorial

Language: en

Sources: [Trivago](<https://devfeed.tech/sources/trivago.md>)

Topics: [Symfony](<https://devfeed.tech/topics/symfony.md>), [PHP Data Objects (PDO)](<https://devfeed.tech/topics/pdo.md>), [legacy](<https://devfeed.tech/topics/legacy.md>), [PHP](<https://devfeed.tech/topics/php.md>), [implementation](<https://devfeed.tech/topics/implementation.md>)

Tags: [backend](<https://devfeed.tech/tags/backend.md>), [env-file-security](<https://devfeed.tech/tags/env-file-security.md>), [implementation](<https://devfeed.tech/tags/implementation.md>), [legacy-application](<https://devfeed.tech/tags/legacy-application.md>), [php](<https://devfeed.tech/tags/php.md>), [symfony](<https://devfeed.tech/tags/symfony.md>)

### AI overview

This article explains how to share session data between a legacy Symfony application using file-based PHP sessions and a newer Symfony application using PDO session storage. It describes the differences in session structure and the investigation into manually writing compatible data to the legacy session file.

### Source excerpt

Learn how we managed to move fast and create a new Symfony application without breaking our old legacy session handling. We write to our legacy session (which is file based) from our new project which uses PDO as the session storage.