0
自定義屬性
考慮下面的代碼:爲Zend的DB行
$select = $table->select()->setIntegrityCheck(false);
$row = $table->fetchRow($select);
// this throws Specified column "custom_data" is not in the row
$row->custom_data = 123;
echo $row->custom_data;
我怎樣才能一些自定義的數據添加到Zend的分貝行?