我正在寻找位于字符串中的数据,如下所示:
string(22) "width="16" height="16""
我希望使用 explode 函数来获取 16 和 16 值并将它们放入我可以使用的数组中。但我不知道如何$num
在 PHP 的explode 函数中定位。通常我只有一个可以使用的逗号。
像这样的东西,但我知道这是错误的:
$size = "width="16" height="16""
$sizes = explode('""', $size);
所有这一切都是:array(1) { [0]=> string(5) "Array" }