View Single Post
Old 11-13-2007, 04:27 PM   #1 (permalink)
DragonBe
The Wanderer
PHP Guru Advanced Programmer Zend Certified 
 
DragonBe's Avatar
 
Join Date: Nov 2007
Location: according to my wife: on the Net
Posts: 19
Thanks: 0
DragonBe is on a distinguished road
Default BelgianPhpGreeter.php

/**
* Author: Michelangelo
* Profession: Enterprise PHP Developer
* Exp: 10+ years (6 years PHP)
* Certs: ZCE 4 & 5
* Contributor on Zend Framework
*/
class BelgianPhpGreet
{
public function beNice()
{
$intro = "Hello php-ers !";
$name = sprintf(
"My name is %s and I'm from %s",
"Michelangelo",
"Belgium"
);
$reason = "Happy to be part of this php community!";

return nl2br($intro . PHP_EOL . $name . PHP_EOL . $reason . PHP_EOL);
}
}
Send a message via ICQ to DragonBe Send a message via Skype™ to DragonBe
DragonBe is offline  
Reply With Quote