如何返回Integer在Laravel(不是JSON)



我有这个文本{price:100}。如何删除字符串,输出将是//100

function each() {
$Offer_price = Offer::select('price')->get();
foreach ($Offer_price as $Price) {
return  $Price; // I Want The Output 100 Not {price:100}
}
}

如果您确定$Pricestring类型,请尝试:

return json_decode($Price, true)['price'];

但是如果对象被自动转换为JSON(由你的框架),尝试:

return $Price->price;

首先,我会使用json_decode将您的字符串转换为json对象。然后我像这样访问price属性:

return json_decode($Price)->{'price'};

相关内容

  • 没有找到相关文章

最新更新