Magento的DTO在哪里?

用Java的人大都有一个习惯,就是为传值定义大量的VO类。在php中当然也可以这样做,但是就失去了脚本语言的优势,Magento里则可以使用Varien底层框架类来实例化VO,代码例:

$customer = new Varien_Object();
$customer->setData(
	array(
		'name'  => 'Google',
		'email' => '[email protected]'
	)
);


然后可以使用类似
$customer->getName();$customer->getEmail();

来调用

你可能感兴趣的:(PHP,框架,脚本,Google,Gmail)