Spot\Entity::dataExcept PHP 메소드

dataExcept() 공개 메소드

Return array of field data with data from the field names listed removed
public dataExcept ( array $except ) : array
$except array List of field names to exclude in data list returned
리턴 array
    public function dataExcept(array $except)
    {
        return array_diff_key($this->data(), array_flip($except));
    }