<?php
class Popular
{
    public static function getVideo()
    {
        return $this->parsing();
    }
}
class Video 
    extends Popular
{
    public static function parsing()
    {
        return 'trololo';
    }
    public static function block()
    {
        return parent::getVideo();
    }
}
echo Video::block();
I should definitely call the class this way:
Video::block();
and not initialize it
$video = new Video();
echo $video->block()
Not this!
Video::block(); // Only this way <<
But: Fatal error: Using $this when not in object context in myFile.php on line 6
How to call function "parsing" from the "Popular" Class?
Soooooooory for bad english
 
     
     
     
    