@@ -296,21 +296,21 @@ public function removeHeader($header) {
296
296
public function getURL ($ includeGetVars = false ) {
297
297
$ url = ($ this ->getExtension ()) ? $ this ->url . '. ' . $ this ->getExtension () : $ this ->url ;
298
298
299
- if ($ includeGetVars ) {
300
- // if we don't unset $vars['url'] we end up with /my/url?url=my/url&foo=bar etc
301
-
302
- $ vars = $ this ->getVars ();
303
- unset($ vars ['url ' ]);
299
+ if ($ includeGetVars ) {
300
+ // if we don't unset $vars['url'] we end up with /my/url?url=my/url&foo=bar etc
301
+
302
+ $ vars = $ this ->getVars ();
303
+ unset($ vars ['url ' ]);
304
304
305
- if (count ($ vars )) {
306
- $ url .= '? ' . http_build_query ($ vars );
307
- }
308
- }
309
- else if (strpos ($ url , "? " ) !== false ) {
310
- $ url = substr ($ url , 0 , strpos ($ url , "? " ));
311
- }
305
+ if (count ($ vars )) {
306
+ $ url .= '? ' . http_build_query ($ vars );
307
+ }
308
+ }
309
+ else if (strpos ($ url , "? " ) !== false ) {
310
+ $ url = substr ($ url , 0 , strpos ($ url , "? " ));
311
+ }
312
312
313
- return $ url ;
313
+ return $ url ;
314
314
}
315
315
316
316
/**
@@ -501,9 +501,9 @@ public function allParams() {
501
501
* @return string
502
502
*/
503
503
public function shiftAllParams () {
504
- $ keys = array_keys ($ this ->allParams );
505
- $ values = array_values ($ this ->allParams );
506
- $ value = array_shift ($ values );
504
+ $ keys = array_keys ($ this ->allParams );
505
+ $ values = array_values ($ this ->allParams );
506
+ $ value = array_shift ($ values );
507
507
508
508
// push additional unparsed URL parts onto the parameter stack
509
509
if (array_key_exists ($ this ->unshiftedButParsedParts , $ this ->dirParts )) {
@@ -636,10 +636,10 @@ public function allParsed() {
636
636
*/
637
637
public function getIP () {
638
638
if (!empty ($ _SERVER ['HTTP_CLIENT_IP ' ])) {
639
- //check ip from share internet
639
+ //check ip from share internet
640
640
return $ _SERVER ['HTTP_CLIENT_IP ' ];
641
641
} elseif (!empty ($ _SERVER ['HTTP_X_FORWARDED_FOR ' ])) {
642
- //to check ip is pass from proxy
642
+ //to check ip is pass from proxy
643
643
return $ _SERVER ['HTTP_X_FORWARDED_FOR ' ];
644
644
} elseif (isset ($ _SERVER ['REMOTE_ADDR ' ])) {
645
645
return $ _SERVER ['REMOTE_ADDR ' ];
@@ -655,12 +655,12 @@ public function getIP() {
655
655
* @return array
656
656
*/
657
657
public function getAcceptMimetypes ($ includeQuality = false ) {
658
- $ mimetypes = array ();
659
- $ mimetypesWithQuality = explode (', ' ,$ this ->getHeader ('Accept ' ));
660
- foreach ($ mimetypesWithQuality as $ mimetypeWithQuality ) {
661
- $ mimetypes [] = ($ includeQuality ) ? $ mimetypeWithQuality : preg_replace ('/;.*/ ' , '' , $ mimetypeWithQuality );
662
- }
663
- return $ mimetypes ;
658
+ $ mimetypes = array ();
659
+ $ mimetypesWithQuality = explode (', ' ,$ this ->getHeader ('Accept ' ));
660
+ foreach ($ mimetypesWithQuality as $ mimetypeWithQuality ) {
661
+ $ mimetypes [] = ($ includeQuality ) ? $ mimetypeWithQuality : preg_replace ('/;.*/ ' , '' , $ mimetypeWithQuality );
662
+ }
663
+ return $ mimetypes ;
664
664
}
665
665
666
666
/**
0 commit comments