WP_Comment::to_arraypublicWP 4.4.0

Converts object to array.

Метод класса: WP_Comment{}

Хуков нет.

Возвращает

array<string, mixed>. Object as array.

Использование

$WP_Comment = new WP_Comment();
$WP_Comment->to_array(): array;

Список изменений

С версии 4.4.0 Введена.

Код WP_Comment::to_array() WP 7.1

public function to_array(): array {
	/** @var Data_Array $comment */
	$comment = get_object_vars( $this );
	return $comment;
}