Pchp.Library.Output.ob_clean C# (CSharp) Method

ob_clean() public static method

Discards the contents of the current level of buffering. No value is returned.
public static ob_clean ( Context ctx ) : void
ctx Pchp.Core.Context
return void
        public static void ob_clean(Context ctx)
        {
            ctx.BufferedOutput.Clean();
        }