在没有循环或条件的情况下打印1到1000 – 在PHP中

前端之家收集整理的这篇文章主要介绍了在没有循环或条件的情况下打印1到1000 – 在PHP中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
here开始的想法 – 这次你只能使用PHP.
这有可能吗?
这是一个基于PHP重载的有趣oo解决方案:
class thousand_printer {
   public function __construct() {
      $this->print1();
   }

   public function __call($method,$_) {
      $count = str_replace('print','',$method);
      echo "$count ";
      $this->{"print" . ++$count}();
   }

   public function print1000() {
      echo "1000\n";
   }
}

new thousand_printer;

我很高兴我的解决方案如此受欢迎.这是一个略微改进,提供了一些模块化:

class printer {
   public function __construct() {
      $this->print1();
   }
   public function __call($method,$method);
      echo "$count ";
      $this->{"print" . ++$count}();
   }
}

class thousand_printer extends printer {
   public function print1001() {}
}

new thousand_printer;
原文链接:https://www.f2er.com/php/136526.html

猜你在找的PHP相关文章