예제 #1
0
파일: Utils.php 프로젝트: onelogin/php-saml
 /**
  * @param $baseurlpath string The baseurl path to use when constructing URLs
  */
 public static function setBaseURLPath($baseurlpath)
 {
     if (empty($baseurlpath) || $baseurlpath == '/') {
         $baseurlpath = '/';
     } else {
         self::$_baseurlpath = '/' . trim($baseurlpath, '/') . '/';
     }
 }