Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 AWK 中,我可以使用逗号分隔的变量字段字符串,并使用 AWK 中的 $NF 变量解析最后一个字段。
有没有办法在 PHP 中做到这一点?谢谢!
$myLastElement = end(array_values($yourArray));
以上有效!
作为一个班轮...
$NF = end(array_map('trim', explode(',', $commadelimitedstring)));