11-19-2007, 12:47 PM
|
#5 (permalink)
|
|
The Wanderer
Join Date: Nov 2007
Location: according to my wife: on the Net
Posts: 19
Thanks: 0
|
Code:
<?php
class bie {
public function __construct($name)
{
return sprintf(
"howdie %s and welcome to this php community.",
htmlentities($name)
);
}
}
echo new bie("TlcAndres");
|
|
|