include('to_include.php')
経由のインクルードされたドキュメントに何かが返されたかどうかを確認する方法はありますか?include()が何かを返したかどうかを確認する方法?
これは、それがどのように見えるかです:
//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;
}
私は私は何が含まれる文書によって生成されたかどうかを確認したいと思い、私のメイン文書でto_include.php
を含めましたので、後。
具体的な解決策は、のfunction_that_generates_some_html_sometimes_but_not_all_the_times()
を使用することですが、これは現在の設定では不可能です。
あなたは巧妙な*§!?&#:--) – maartenmachiels
うれしいです:)) – Catalin