Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class Klasa
- {
- public $opcja_I = 'Test klasy nr #1.';
- public function UstawZawartość($wartość)
- {
- $this -> opcja_I = $wartość;
- }
- public function PobierzZawartość()
- {
- return $this -> opcja_I . '<br/>';
- }
- }
- $obiekt = new Klasa;
- echo $obiekt -> PobierzZawartość();
- $obiekt -> UstawZawartość("TEST.");
- echo $obiekt -> PobierzZawartość();
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement