gpt4 book ai didi

php - 确定函数是否有输出的最佳方法?

转载 作者:可可西里 更新时间:2023-11-01 12:59:45 25 4
gpt4 key购买 nike

我有一个函数列表,这些函数运行相当深入的例程来确定从哪个 post_id 获取其内容并将其输出到网站的前端。

当此函数返回其内容时,我希望将其包装在 html 包装器中。我希望此 html 包装器仅在函数具有要返回的输出时加载。

例如,我有以下...

public static function output_*() {
// my routines that check for content to output precede here
// if there IS content to output the output will end in echo $output;
// if there is NO content to output the output will end in return;
}

在完整的解释中,我有以下...

如果其中一个函数返回一个输出,我希望它被包装在一个 html 包装器中,所以理论上我正在尝试完成这样的事情......

public static function begin_header_wrapper() {
// This only returns true if an output function below returns content,
// which for me is other than an empty return;
include(self::$begin_header_wrapper);
}

public static function output_above_header() {
// my routines that check for content to output precede here
// if there is content to return it will end in the following statement
// otherwise it will end in return;
include($begin_markup); // This is the BEGIN html wrapper for this specifc output
// It is, so let's get this option's post id number, extract its content,
// run any needed filters and output our user's selected content
$selected_content = get_post($this_option);
$extracted_content = kc_raw_content($selected_content);
$content = kc_do_shortcode($extracted_content);
echo $content;
include($end_markup); // This is the END html wrapper for this specifc output
}
public static function output_header() {
// the same routine as above but for the header output
}
public static function output_below_header() {
// the same routine as above but for the below header output
}

public static function end_header_wrapper() {
// This only returns true if an output function above returns content,
// which for me is other than an empty return;
include(self::$end_header_wrapper);
}

我现在知道,我不想提前确定两次(一次在开始,一次在结束)如果输出函数之一有输出,什么时候应该有办法做到这一点一张支票,但我想从这个兔子洞开始,找出确定我的函数是否返回某些内容的最佳方法。

或者如果有更好的方法来解决这个问题,请全力以赴,哈哈,让我知道。

我在线查看了这篇文章和其他文章@ Find out if function has any output with php

所以最后,我只是想知道是否有更好的方法来解决这个问题,以及您认为检查我的函数是否有要返回的输出的最佳方法是什么,这样我就可以运行我的 html 包装器基于那些条件?

ob_get_length是最好的办法吗?当我查看 ob 目的时,这个似乎是最好的,也是最简单的,但我想得到一些建议和反馈。或者也许我可以检查我的变量 $content 是否被返回?谢谢。真的很感激!

最佳答案

您可以捕获结果并将其存储在一个变量中,然后将其提供给 empty() 函数。

if(!empty(($output = yourFunctionToTest(param1, paramN)))) {
// do something with $output (in this case there is some output
// which isn't considered "empty"
}

这会执行您的函数,将输出存储在一个变量中(在本例中为 $output)并执行 empty() 以检查变量内容。之后您可以使用 $output 的内容。

请注意,empty() 将空字符串或 0 视为“空”,因此返回 true

作为替代方案,您可以使用 isset() 等函数来确定变量是否不是 null

http://php.net/isset

http://php.net/empty

关于php - 确定函数是否有输出的最佳方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39110662/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com