@Guides > I PHP kan du nedarve fra andre klasser med extends.
- class Entity {
- function hello($name) {
- echo "Hello $name";
- }
- }
-
-
- class Posts extends Entity {
-
- _construct($name)
- $this->name = $name;
- }
-
- function hello() {
- parent::hello($this->name);
- }
- }
-
-
- $post = new Posts("Foo");
- $post->hello();
-
- => Hello Foo
Indlæg senest redigeret d. 02.06.2014 09:46 af Bruger #17081