MediaWiki REL1_31
DumpStringOutput.php
Go to the documentation of this file.
1<?php
28 private $output = '';
29
33 function write( $string ) {
34 $this->output .= $string;
35 }
36
42 public function __toString() {
43 return $this->output;
44 }
45}
__toString()
Get the string containing the output.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful