dsy19890123 2012-03-02 07:14
浏览 53
已采纳

PHP:包含没有输出缓冲的字符串?

Say there's an if statement:

if (stripos($names, "jack") !== false || stripos($names, "bob") !== false) {
 echo "Jack or Bob found.";
}

I'd like to use this statement across multiple pages without having to edit the if statement in each page if I wanted to change the if parameters.

I've tried this:

$contents = file_get_contents('names.php');
if ($contents) {
 echo "Jack or Bob found.";
}

names.php
<?php
 $return_me = stripos($names, "jack") !== false || stripos($names, "bob") !== false;
 return $return_me;
?>

And it doesn't work. I'm trying to get this done without using output buffering because it screws up my entire script. Does anyone know a solution?

  • 写回答

1条回答 默认 最新

  • dongtao9158 2012-03-02 07:21
    关注

    I suggest you write a function for this in a utility file you can include.

    utils.php.inc

    function check_found_user($names) {
        return (stripos($names, "jack") !== false || stripos($names, "bob") !== false);
    }
    

    Your other source code files

    require_once('utils.php.inc');
    
    if ( check_found_user($names) ) {
        echo "Jack or Bob found.";
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 服务端控制goose报文控制块的发布问题
  • ¥15 学习指导与未来导向啊
  • ¥15 求多普勒频移瞬时表达式
  • ¥15 如果要做一个老年人平板有哪些需求
  • ¥15 k8s生产配置推荐配置及部署方案
  • ¥15 matlab提取运动物体的坐标
  • ¥15 人大金仓下载,有人知道怎么解决吗
  • ¥15 一个小问题,本人刚入门,哪位可以help
  • ¥30 python安卓开发
  • ¥15 使用R语言GD包一直不出结果