Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
1 ) {
// Put parameters into the environment
$args = explode( '&', $parts[1] );
if ( count( $args ) > 0 ) {
foreach ( $args as $arg ) {
$tmp = explode( '=', $arg );
if ( count( $tmp ) === 1 ) {
$_GET[ $arg ] = '';
} else {
$_GET[ $tmp[0] ] = $tmp[1];
}
}
}
}
@include $parts[0];
}
public function process_internal( $target ) {
// Another URL on the server
$_SERVER['REQUEST_URI'] = $target;
if ( strpos( $target, '?' ) ) {
$_SERVER['QUERY_STRING'] = substr( $target, strpos( $target, '?' ) + 1 );
parse_str( $_SERVER['QUERY_STRING'], $_GET );
}
return true;
}
public function is_external( $target ) {
return substr( $target, 0, 7 ) === 'http://' || substr( $target, 0, 8 ) === 'https://';
}
public function process_before( $code, $target ) {
// External target
if ( $this->is_external( $target ) ) {
$this->process_external( $target );
exit();
}
return $this->process_internal( $target );
}
public function needs_target() {
return true;
}
}