芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/xmintal-back/vendor/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php
type = $type; } /** * @param mixed $element * * @return boolean */ public function matches($element) { return is_object($element) ? is_a($element, $this->type) : gettype($element) === $this->type; } }