International PHP Conference Munich 2025

Voting

: min(five, eight)?
(Example: nine)

The Note You're Voting On

Anonymous
4 years ago
array_intersect use Value, not callback
array_uintersect use Value, callback receives Value
array_intersect_key use Key, not callback
array_intersect_ukey use Key, callback receives Key
array_intersect_assoc use Both, not callback
array_intersect_uassoc use Both, callback receives Key ONLY
array_uintersect_assoc use Both, callback receives Value ONLY
array_uintersect_uassoc use Both, One callback receives the Key, the other receives the Value.

<< Back to user notes page

To Top