Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 1st, 2012  |  syntax: None  |  size: 0.24 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. public static function matchBeneName($name, $acce, $rpc)
  2. {
  3.         $res = static::match($name, $acce);
  4.         return 0 < ($res['dev_match'] + $res['cny_match']);
  5. }
  6.  
  7. public function match($name, $acce, $rpc)
  8. {
  9.         return $rpc->call('UPM::MatchName', $name, $acce);
  10. }