예제 #1
0
파일: Util.php 프로젝트: pixel418/staq
 public static function popStackQuery($string)
 {
     if (\Staq\Util::isStackQueryPopable($string)) {
         $string = \UString::substrBeforeLast($string, '\\');
     } else {
         $string = NULL;
     }
     return $string;
 }