|
North, Norther and Northest - PHP 5 Objects
Here's a PHP example of calls to PHP methods to return the Longitude North of a place, the more northerly of two objects via an object (dynamic) method, and the most northerly of a whole array of objects via a static function.
$north = $ilike[17]->getlong();
$norther = $ilike[45]->northof($ilike[41]);
$northest = place::northmost($ilike);
To return a single longitude, we've used a property access method of the sort you'll have written a hundred times if you're an OO programmer.
To compare two objects, we've elected to run a method on one of the objects and pass the other in as the parameter; this method returns the more northerly object:
function northof($that) {
if ($this->lat > $that->lat) return $this;
return $that;}
Comparing a whole list of objects, our static method reads:
function northmost($these) {
$sofar = $these[0];
for ($k=1; $k
if ($these[$k]->lat > $sofar->lat)
$sofar = $these[$k];
}
return $sofar;
}
Although this code was written and tested with PHP 5.0.5, I see no reason why these code snippets won't work in PHP 4.
See the complete application and complete classes file in our training modules area (written 2005-11-04 18:15:45)
Associated topics are indexed under H108 - Objects in PHP
Some other Articles
Which MySQL server am I using? Looking for railway groups and users - Swindon, Salisbury, Southampton On line course booking - credit card protection Rail services under threat - Swindon, Melksham ... and Newquay and Bicester too North, Norther and Northest - PHP 5 Objects Setting the file name for a downloaded document Double Dollars in PHP Different ways of selling PHP upgrade - traps to watch New look to website
|
1892 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|