What happens when WordPress memory limit is exceeded?

There isn’t really such a thing as separate WP memory limit. It’s just a WP way with messing with PHP setting, instead of just using… you know… PHP for that.

  • If WP limit is more than PHP limit then WP will attempt to increase PHP limit (which doesn’t mean it will succeed at that, but it will try).

  • If WP limit is less (such as in your example) then it is simply ignored.

The practical need for a limit is too prevent PHP from draining more memory than server can realistically spare. Hosts usually have hard maximum limit, you won’t be able to go above via configuration.

So the answer to your question is — exceeding WP memory limit is meaningless, what matters is exceeding real PHP limit. In which case page will crash with fatal error.

Note that memory limit affects each execution/page view, not a site as a whole. So might be crashing as much as completely everything and as little as one individual page. Whatever is leaking or overusing memory.