Are there any PHP frameworks like Adventure PHP Framework, Zend, or CakePHP that support ORM functionality?

Yes, there are PHP frameworks like Laravel, Symfony, and CodeIgniter that support ORM functionality. These frameworks provide built-in ORM libraries or plugins that allow developers to interact with databases using object-oriented methods, making it easier to perform CRUD operations.

// Example using Laravel Eloquent ORM
use Illuminate\Database\Eloquent\Model;

class User extends Model
{
    // Model definition
}

// Example using Symfony Doctrine ORM
use Doctrine\ORM\EntityManager;

$entityManager = EntityManager::create($connection, $config);

// Example using CodeIgniter Query Builder
$this->db->select('*');
$this->db->from('users');
$query = $this->db->get();