OpenGraph\Opengraph::_normalizeContent PHP 메소드

_normalizeContent() 보호된 메소드

Normalize content
protected _normalizeContent ( String $property, Mixed $content ) : Mixed
$property String
$content Mixed
리턴 Mixed
    protected function _normalizeContent($property, $content)
    {
        if ($property == self::FB_ADMINS && is_string($content)) {
            return (array) explode(',', $content);
        }
        return $content;
    }