11-13-2007, 04:27 PM
|
#1 (permalink)
|
|
The Wanderer
Join Date: Nov 2007
Location: according to my wife: on the Net
Posts: 19
Thanks: 0
|
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); } }
|
|
|