_set_uri_string() 보호된 메소드

Set URI String
protected _set_uri_string ( string $str ) : void
$str string
리턴 void
예제 #1
0
 function _set_uri_string($str)
 {
     $this->original_uri = $str;
     $pos = strrpos($str, '.');
     $this->extension = pathinfo($str, PATHINFO_EXTENSION);
     $rpos = strrpos($str, '.');
     if ($rpos !== FALSE) {
         $str = substr($str, 0, $rpos);
     }
     parent::_set_uri_string($str);
 }