Backend\Modules\FormBuilder\Engine\Model::formatRecipients PHP 메소드

formatRecipients() 공개 정적인 메소드

Formats the recipients based on the serialized string
public static formatRecipients ( string $string ) : string
$string string The serialized string that should be formatted
리턴 string
    public static function formatRecipients($string)
    {
        return implode(', ', (array) @unserialize((string) $string));
    }