fork download
  1. <?php
  2. $messages = [['sticker_id'=>1],['sticker_id'=>null],['sticker_id'=>3],['sticker_id'=>null],['sticker_id'=>1]];
  3. $stickerIds = array_values(
  4. array_column($messages, 'sticker_id'))
  5. )
  6. );
  7. var_export($stickerIds);
Success #stdin #stdout 0.03s 25804KB
stdin
Standard input is empty
stdout
array (
  0 => 1,
  1 => 3,
)