<?php
class a {
public function foo() {
echo __METHOD__ . PHP_EOL;
}
}
class b extends a {
public function foo() {
$this->foo(); # I want to call a's foo method here.
如果我在PHP中擴展一個靜態類,並且父類引用「self ::」,這是否將引用擴展類中的self? 因此,例如 <?php
Class A
{
static $var
public static function guess(){self::$var = rand(); return $var}
}
Class B extends Class A
{
p
嗨我有一個關於$ this的問題。 class foo {
function __construct(){
$this->foo = 'bar';
}
}
class bar extends foo {
function __construct() {
$this->bar = $this->foo;
}
}
大師, 我在這個問題上搜索了很多次,但我幾乎找不到任何有用的信息。 所以假設我們有一個base.html模板:根據該 {% block test %}This is the base!{% endblock %}
與2子模板,a.html和b.html a.html: {% extends "base.html" %}
{% block test %}This is the A!{% end
嗨,大家好,我在一個問題集中遇到了一個「擴展」問題,我正在處理一個問題集 - 我想我只是有一個塊,因爲它被寫有目的地混淆。這裏是因爲我得到了它的問題: class A {
int x;
A(int a) {System.out.println(" class A");}
}
class B extends A {
int x;
B() {System.