Answers for "php list to array"

PHP
0

php collection to array

//convert a collection toArray()
$comments_collection = $post->comments()->get()->toArray()
Posted by: Guest on September-11-2021
0

toarray php

<?php
$collection = new DsVector([1, 2, 3]);

var_dump($collection->toArray());
?>
Posted by: Guest on July-27-2021

Browse Popular Code Answers by Language