Files
php_practice/exam194/constructor.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');
?>