如何用第一個數組的值替換第二個數組的數組鍵?PHP替換數組鍵
$imgNumbers = array();
foreach($imgPat as $imgKey => $imgValue)
{
$imgNumbers[] = intval(substr($imgValue, strrpos($imgValue, '/') +4));
}
$images = array();
foreach($imgPat as $imgKey => $imgValue) {
$images[] = img_to_base64($imgValue);
}
$imgNumbers
返回一個整數像2
,24
或111
。
和$images
應具有陣列密鑰$imgNumbers
。