When I writting code on PHP, I need to require or import .PHP files, containing classes and functions need for me. For example `
<?php require("ffmpeg.php"); ?>
May I require PHP file, which I have no on root directory, but it stored on website, for example `
<?php require("http://example.com/ffmpeg.php"); ?>
If it was real, please help me with this question.