我有这个文本{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}
}
}
如果您确定$Price
是string
类型,请尝试:
return json_decode($Price, true)['price'];
但是如果对象被自动转换为JSON(由你的框架),尝试:
return $Price->price;
首先,我会使用json_decode
将您的字符串转换为json对象。然后我像这样访问price
属性:
return json_decode($Price)->{'price'};