https://www.php.net/manual/en/function.apcu-fetch.php
states under "Return values" that
"The stored variable or array of variables"
This should read:
"The stored variable or an associative array with the variables' names as keys and their values. Use extract () to convert this array to the variables themselves."
If the function returned the variables themselves then they could be fetched by a destructuring assignment, which is not the case.
https://www.php.net/manual/en/function.apcu-fetch.php
states under "Return values" that
"The stored variable or array of variables"
This should read:
"The stored variable or an associative array with the variables' names as keys and their values. Use extract () to convert this array to the variables themselves."
If the function returned the variables themselves then they could be fetched by a destructuring assignment, which is not the case.