Bir eklerseniz nasıl kontrol () PHP şey döndü

0 Cevap php

include('to_include.php') döndü şey aracılığıyla dahil belge olmadığını kontrol etmek için herhangi bir yolu var mı?

Bu nasıl görünüyor:

//to_include.php
echo function_that_generates_some_html_sometimes_but_not_all_the_times();

//main_document.php
include('to_include.php');
if($the_return_of_the_include != '') { 
    echo $do_a_little_dance_make_a_little_love_get_down_tonight; 
}

Ben dahil ettik kadar sonra to_include.php benim ana belge Hiçbir şey dahil belgede tarafından oluşturulan olup olmadığını kontrol etmek istiyorum.

Ben bariz çözüm sadece main_document.php in function_that_generates_some_html_sometimes_but_not_all_the_times() kullanmak olacaktır biliyorum, ama bu benim şimdiki kurulumu mümkün değil.

Bana bazı işaretçiler verebilir misiniz?

0 Cevap