gpt4 book ai didi

arrays - 在 Laravel Controller 中创建数据数组

转载 作者:行者123 更新时间:2023-12-02 17:10:44 25 4
gpt4 key购买 nike

$document = new Document();
$document->title = $request['title'];
$document->description = $request['description'];

当我尝试使用 echo $document; 输出上面的代码时,我得到了这个结果:

{"title":"asdfasdf","description":"asdfasdfsadf"}

我想要的是创建我自己的数据数组并输出相同的格式。这是我正在尝试试验的代码,但它不起作用:

    $data = array(
"title" => "hello",
"description" => "test test test"
);

echo $data;

任何帮助将不胜感激。谢谢。

最佳答案

所有集合也用作迭代器,允许您像简单的 PHP 数组一样遍历它们:

foreach ($document as $data) {
echo $data->title;
echo $data->description;
}

使用 PHP 框架没有区别。可以引用官方PHP Arrays Manual使用语言构造的页面。

如果需要将JSON转为数组,使用:

$data->toArray();

json_decode($data);

这是您的代码:

$data = array(
"title" => "hello",
"description" => "test test test"
);

//也可以声明

$data = ["title" => "hello", "description" => "test test test"];

使用:

var_dump($data);

print_r($data);

//输出将是

["title" => "hello", "description" => "test test test",]

关于arrays - 在 Laravel Controller 中创建数据数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49398942/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com