vote up 0 vote down star
  • The value of $total_results = 10
  • $total_results in an object, according to gettype()
  • I cannot use mathematical operators on $total_results because it's not numeric
  • Tried $total_results = intval($total_results) to convert to an integer, but no luck
  • The notice I get is: Object of class Zend_Gdata_Extension_OpenSearchTotalResults could not be converted to int

How can I convert to an integer?

flag

4 Answers

vote up 1 vote down check

Does this work?

$val = intval($total_results->getText());
link|flag
vote up 1 vote down
$results_numeric = (int) $total_results;

or maybe this:

$results_numeric = $total_results->count();
link|flag
No dice with either of those – RyOnLife Feb 24 at 19:31
(int) does the same as calling intval(). – Pim Jager Feb 24 at 19:36
vote up 1 vote down

perhaps the object has a build in method to get it as an integer?

Otherwise try this very hacky approach (relys on __toString() returning that 10)

$total_results = $total_results->__toString();
$total_results = intval($total_results);

However if the object has a build in non-magic method, you should use that!

link|flag
vote up 1 vote down

You can see the methods of the class here. Then you can try out the different methods yourself. There is a getText() method for example.

link|flag
I'm new to OO, thanks for pointing out/reminding about methods of the class. – RyOnLife Feb 24 at 19:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.