1
0
Fork 0
mirror of synced 2025-04-01 12:26:11 +03:00
doctrine2/manual/codes/Basic Components - Collection - Introduction.php

9 lines
133 B
PHP

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