1
0
mirror of synced 2025-03-01 10:23:22 +03:00
doctrine2/manual/codes/Basic Components - Collection - Introduction.php

10 lines
133 B
PHP

<?php
$coll = new Doctrine_Collection('User');
$coll[0]->name = 'Arnold';
$coll[1]->name = 'Somebody';
$coll->save();
?>