Aaron Saray

open source programmer,
web developer

entrepreneur, author
and musician

My Blog

contains PHP, Web and business/entrepreneurial related content. Please join in the conversation!

PHP – Return results of comparison

A useful reminder: you can make use of returning the results of comparisons for is*() functions. Let me explain that further…

PHP allows you to get the result of a comparison in a variable. Any variable you can return from a function. My my amazing transitive skills, I say you can return the comparison of a variable. Enough of this drivel – here’s an example:

1
2
3
4
5
6
7
8
function isGreaterThanFour($testVar)
{
  return $testVar > 4;
}

if (isGreaterThanFour(5)) {
  print 'yay!';
}

So – this is a very simple example, obviously – but it illustrates the powerful point of this functionality clearly.

This entry was posted in PHP and tagged . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>