Can I declare a method in an object as both a static and non-static method with the same name that calls the static method?
I want to create a class that has a static method "send" and a non-static method that calls the static function. For example:
class test {
private $text;
public static function instance() {
return new test();
}
public function setText($text) {
$this->text = $text;
return $this;
}
public function send() {
self::send($this->text);
}
public static function send($text) {
// send something
}
}
I want to be able to call the function on these two was
test::send("Hello World!");
and
test::instance()->setText("Hello World")->send();
is it possible?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…