コード例 #1
0
ファイル: inflections.php プロジェクト: phpontrax/trax
 function clear($scope = "all")
 {
     if ($scope == "all") {
         self::$plurals = self::$singulars = self::$uncountables = self::$humans = array();
     } else {
         self::${$scope} = array();
     }
 }