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

时间:2017-08-11 19:38:40

标签: php output-buffering

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

一切都很好地循环通过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 /连接时实际上没有抛出错误。我甚至不知道究竟要问什么问题,因为我实际上无法弄清楚出了什么问题。我还搞乱了标题,字符编码,不同的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 );
    }
}

1 个答案:

答案 0 :(得分:0)

我怀疑你所包含的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 );
        }