This is the function:
public static function LoadByDataChiamata($calDataChiamata) {
return ChiamataVodafone::QueryArray(
QQ::AndCondition(
QQ::LessThan(QQN::ChiamataVodafone()->DataChiamata, $calDataChiamata->DateTime),
QQ::GreaterOrEqual(QQN::ChiamataVodafone()->DataChiamata, $calDataChiamata->DateTime)
)
);
}
This is the calling function:
print_r(ChiamataVodafone::LoadByDataChiamata($this->calDataChiamata));
The value of $this->calDataChiamata is Sep 03 2007.
I have no idea how to manipulate that date object, probabily I should study the code of that object.
I am at a good point in the development of my first app in qcodo, but I have stopped at this query, and I am running out of time :-( However thanks mike for your help.