I have a valid Intelephense Pro license, and most Pro-only features appear to be active (e.g. getopt(), gmp_*, ReflectionClass, etc.), but functions like rand() and random_int() are not being resolved. They appear as undefined and show no hover/tooltips, even though they are part of PHP core and available even in the free stub set.
✅ The following resolve correctly:
• array_map()
• getopt() (Pro-only CLI function)
• gmp_add() (Pro-only math extension)
• ReflectionClass (core class)
❌ These do not resolve:
• rand() → reported as undefined
• random_int() → reported as undefined
• Hover and signature info missing for both
For instance: