How to get all the current code from one php-file inside other php-file?
Gibi, biz a.php
içinde bazı fonksiyonları ile dosya var.
Ve dosya b.php
, biz a.php
dan (herhangi bir fonksiyonları çalıştıran olmadan) tüm kodu almak ve istendiğinde tarayıcıya echo istediğiniz yere.
Like
(inside b.php
):
$content = get_all_file_text(a.php);
echo $content;
Teşekkürler.