Title: Candidate::fromArray
Published: May 20, 2026

---

# Candidate::fromArray( $array )

## In this article

 * [Source](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-candidate/fromarray/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-candidate/fromarray/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-candidate/fromarray/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-candidate/fromarray/?output_format=md#wp--skip-link--target)

{@inheritDoc}

## 󠀁[Source](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-candidate/fromarray/?output_format=md#source)󠁿

    ```php
    public static function fromArray(array $array): self
    {
        static::validateFromArrayData($array, [self::KEY_MESSAGE, self::KEY_FINISH_REASON]);
        $messageData = $array[self::KEY_MESSAGE];
        return new self(Message::fromArray($messageData), FinishReasonEnum::from($array[self::KEY_FINISH_REASON]));
    }
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-includes/php-ai-client/src/results/dto/candidate.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-includes/php-ai-client/src/Results/DTO/Candidate.php#L99)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-includes/php-ai-client/src/Results/DTO/Candidate.php#L99-L104)

## 󠀁[Related](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-candidate/fromarray/?output_format=md#related)󠁿

| Uses | Description | 
| [Candidate::__construct()](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-candidate/__construct/)`wp-includes/php-ai-client/src/Results/DTO/Candidate.php` |

Constructor.

  | 
| [Message::fromArray()](https://developer.wordpress.org/reference/classes/wordpress-aiclient-messages-dto-message/fromarray/)`wp-includes/php-ai-client/src/Messages/DTO/Message.php` |

{@inheritDoc}

  |

| Used by | Description | 
| [GenerativeAiResult::fromArray()](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-generativeairesult/fromarray/)`wp-includes/php-ai-client/src/Results/DTO/GenerativeAiResult.php` |

{@inheritDoc}

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/classes/wordpress-aiclient-results-dto-candidate/fromarray/?output_format=md#changelog)󠁿

| Version | Description | 
| [0.1.0](https://developer.wordpress.org/reference/since/0.1.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fclasses%2Fwordpress-aiclient-results-dto-candidate%2Ffromarray%2F)
before being able to contribute a note or feedback.