为了账号安全,请及时绑定邮箱和手机立即绑定

Laravel PHP 从特定列获取值

Laravel PHP 从特定列获取值

PHP
千万里不及你 2023-10-15 15:02:54
<?php$file = 'https://demo.conitor.in/Remembered/views/feed.php';if(!$xml = simplexml_load_file($file)){    // Will return false if the file doesn't contain a well formated XML document.    echo "file not found!";} else {    echo "<table><thead><tr><th>Number</th><th>Title</th><th>First Name</th><th>State</th></tr></thead><tbody>";    $i = 0;    // Refere your SimpleXmlObject Struture for more information.    foreach ($xml->channel->item as $item) {       echo "<tr><td>" .++$i ."</td><td>" . $item->title . "</td><td>" . $item->DeceasedFirstName . "</td><td>" . $item->State ."</td></tr>";    }    echo "</tbody></table>";}?>
查看完整描述

2 回答

?
慕妹3242003

TA贡献1824条经验 获得超6个赞

尝试使用 pluck 方法而不是 select

where(...)->pluck('column2');


查看完整回答
反对 回复 2023-10-15
?
沧海一幻觉

TA贡献1824条经验 获得超5个赞

你可以做

Model::where('column_3', 1)->pluck('column_2')->toArray();

该方法toArray()会将其转换collection为数组


查看完整回答
反对 回复 2023-10-15
  • 2 回答
  • 0 关注
  • 118 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信