Sun Oct 26, 2008 11:35 pm
<?php
class Employee {
public $title = "product";
public $mainName = "main";
public $firstName = "first";
public $price = 0;
function getFullName() {
return "{$this->firstName}".
" {$this->mainName}";
}
}
$product1 = new Employee();
$product1->title = "title";
$product1->mainName = "A";
$product1->firstName = "B";
$product1->price = 5.99;
print "author: ".$product1->getFullName()."\n";
?>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.