1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/codes/Basic Components - Collection - Introduction.php

10 lines
133 B
PHP
Raw Normal View History

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