本文整理汇总了PHP中Combination::load方法的典型用法代码示例。如果您正苦于以下问题:PHP Combination::load方法的具体用法?PHP Combination::load怎么用?PHP Combination::load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Combination
的用法示例。
在下文中一共展示了Combination::load方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Material
$mat_1->save();
$mat_2 = new Material();
$mat_2->belongs_to($company);
$mat_2->name = 'Drewno brzozowe';
$mat_2->save();
/** 1.6. Check if materials successfully created */
debug($mat_1->load());
debug($mat_2->load());
/** 1.7. Create a new material combination */
$comb = new Combination();
$comb->belongs_to($product);
$comb->has_multiple($mat_1, $mat_2);
$comb->price = '12.34';
$comb->save();
/** 1.8. Check if combination successfully created */
debug($comb->load());
/*
CREATE TABLE `product` (
`id` int(10) unsigned NOT NULL auto_increment,
`company_id` int(10) unsigned NOT NULL,
`name` text collate utf8_polish_ci NOT NULL,
`elem_1` text collate utf8_polish_ci NOT NULL,
`elem_2` text collate utf8_polish_ci NOT NULL,
`elem_3` text collate utf8_polish_ci NOT NULL,
`elem_4` text collate utf8_polish_ci NOT NULL,
PRIMARY KEY (`id`)
);
CREATE TABLE `combination` (
`id` int(10) unsigned NOT NULL auto_increment,
`product_id` int(10) unsigned NOT NULL,
`mat_id` int(10) unsigned default NULL,