PHP 8.4.24 Released!

Voting

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

The Note You're Voting On

M Spreij
19 years ago
Can also handy for debugging, to quickly show a bunch of variables and their values:

<?php
print_r(compact(explode(' ', 'count acw cols coldepth')));
?>

gives

Array
(
    [count] => 70
    [acw] => 9
    [cols] => 7
    [coldepth] => 10
)

<< Back to user notes page

To Top