According to the docs php://output is only a writable stream, is there any way to read whatever was streamed to it as a content(possibilly a string);
$content = fopen('php://output',r);
tried above code but no use.
According to the docs php://output is only a writable stream, is there any way to read whatever was streamed to it as a content(possibilly a string);
$content = fopen('php://output',r);
tried above code but no use.
No, you cannot read from
php://outputFrom the docs