19 lines
245 B
PHP
19 lines
245 B
PHP
<?php
|
|
|
|
class Example{
|
|
|
|
public function __construct($something)
|
|
{
|
|
$this-> SaySomething($something);
|
|
}
|
|
|
|
public function SaySomething($something){
|
|
echo $something;
|
|
}
|
|
}
|
|
|
|
$example = new Example('Some text');
|
|
|
|
|
|
|
|
?>
|