Pchp.Core.PhpString.Output C# (CSharp) 메소드

Output() 개인적인 메소드

private Output ( Context ctx ) : void
ctx Context
리턴 void
        internal void Output(Context ctx)
        {
            var chunks = _chunks;
            if (chunks != null)
            {
                if (chunks.GetType() == typeof(object[]))
                {
                    OutputChunks(ctx, (object[])chunks, _chunksCount);
                }
                else
                {
                    OutputChunk(ctx, chunks);
                }
            }
        }

Usage Example

예제 #1
0
 public void Echo(PhpString value) => value.Output(this);
All Usage Examples Of Pchp.Core.PhpString::Output