Advertisement
nikola_petkanski

invoke static method in abstract method in php

Feb 10th, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. <?php
  2.  
  3. abstract class TestClass
  4. {
  5.   public static function test() {
  6.     echo __FILE__ .'::'. __LINE__ . "\n";
  7.   }
  8. }
  9.  
  10. echo TestClass::test();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement