我正在尝试用 PHP 编写一个函数,但作为一个新手,我发现这样做有点困难。我有一个看起来像的数组
[{"x":"12345","y":"john"},{"x":"12345","y":"stars"}]
我正在写的功能是
function getCSV($x)
{
// Now I want to pass the $x which in the above array is 12345 and get "john,stars" as output
}
PHP中是否有任何可用的方法可以做到这一点,或者获得它的最佳方法是什么?