使用输出缓冲时如何避免变量冲突

How to avoid variable conflicts while using output buffering

我正在编写一个函数,作为学习练习,用于组合和缩小 css 文件和 php 输出生成的文件 css。

遍历 css 文件一切正常,但一旦它尝试从 php 文件中推送从输出缓冲区返回的字符串,数组就变成了一个 int。 var_dump() 产生这个:

int(5)

我也试过连接字符串;它再次正常工作,直到到达 php 文件,然后字符串中前面的所有内容都变为 4。像这样:

4/*
* Home: Appointment Grid
*/
.difAppointmentGrid {
    margin: 2rem 0;
    font-family: "Lato" !important;
    box-shadow: -4px 4px 16px 4px hsla( 240, 0%, 0%, 0.1 );
}
. . . 

这是我在 styles.php 文件中所做的示例:

. . . 
.difAppointmentGrid header div h3 {
    margin: 0;
    padding: 1.5rem 0;
    font-size: 2rem;
    text-align: center;
    color: white;
}
<?php
for ( $h3 = 1, $o = 0.40; $h3 <= 4; ++$h3, $o += 0.20 )
{
    $rule = '.difAppointmentGrid header div:nth-child('.$h3.') h3 {'."\n\t".
            'background-color: hsla( 223, 63%, 22%, '.$o.' );'."\n".
            '}'."\n";
    echo $rule;
}
?>
.dif_grid {
    display: flex;
}
. . . 

这是函数:

function styles_init()
{
    $path = __DIR__ . '/aggregate.min.css';
    if ( is_writable( $path ) )
    {
        $r = array();
        foreach( array_filter( glob( __DIR__ . '/modules/*.*' ), 'is_file' ) as $file )
        {
            $fn = pathinfo( $file );
            if ( $fn['extension'] == 'php' || $fn['extension'] == 'css'  )
            {
                ob_start();
                include( $file );
                $x = ob_get_flush();
                $r[] = $x;
            }
        }
        $c = implode( "\n\n", $r );
        //$c = str_replace( array( ' {', ': ', ', ' ), array( '{', ':', ',' ) , str_replace( array( "\r\n", "\r", "\n", "\t", '  ', '    ', '    ' ), '', preg_replace( '!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $c ) ) );

        $f = fopen( $path, 'wb' );
        fwrite( $f, $c );
        fclose( $f );
    }
}

最奇怪的是 array_pushing/concatenating 时实际上没有抛出任何错误。我什至不知道到底要问什么问题,因为我实际上无法弄清楚出了什么问题。我还弄乱了 headers、字符编码、不同的 ob 函数,以及出于绝望将 ob_get_flush 转换为字符串。

解决方案:

function get_include_output($file)
{
    ob_start();
    include( $file );
    return ob_get_flush();
}
function styles_init()
{
    $path = __DIR__ . '/aggregate.min.css';
    if ( is_writable( $path ) )
    {
        $r = array();
        foreach( array_filter( glob( __DIR__ . '/modules/*.*' ), 'is_file' ) as $file )
        {
            $fn = pathinfo( $file );
            if ( $fn['extension'] == 'php' || $fn['extension'] == 'css'  )
            {
                $r[] = get_include_contents( $file );
            }
        }
        $c = implode( "\n\n", $r );
        //$c = str_replace( array( ' {', ': ', ', ' ), array( '{', ':', ',' ) , str_replace( array( "\r\n", "\r", "\n", "\t", '  ', '    ', '    ' ), '', preg_replace( '!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $c ) ) );

        $f = fopen( $path, 'wb' );
        fwrite( $f, $c );
        fclose( $f );
    }
}

我怀疑您包含的 PHP 文件正在使用变量 $r,因此它用数字覆盖了您的变量。您可以通过包装获取将文件作为字符串包含在函数中的结果的代码来避免变量冲突,因为这将有自己的变量范围。

function get_include_output($file) {
    ob_start();
    include($file);
    return ob_get_flush();
}

然后将您的代码更改为:

       if ( $fn['extension'] == 'php' || $fn['extension'] == 'css'  )
        {
            $x = get_include_contents($file);
            array_push( $r, $x );
        }