Tagged Questions

1
vote
3answers
79 views

Why must I assign the result of PHP’s end() array function to a variable to operate on the result?

I've tried to delete the possibly empty last entry of an array as follows but I get the error: "Can't use function return value in write context": if (empty(end($crontabEntryList))) { …