game2006api/webapp/mt/AttrHelper.php
aozhiwei ba5fcca7ad 1
2022-01-05 19:50:51 +08:00

29 lines
386 B
PHP

<?php
namespace mt;
use phpcommon;
class AttrHelper {
public static function parseAttr($attrStr)
{
$attrs = array();
$strs = explode('|', $attrStr);
foreach ($strs as $str) {
}
return $attrs;
}
public static function mergeAttr($aAttr, $bAttr)
{
}
public static function canMerge($aAttr, $bAttr)
{
}
}