update page now

Voting

: six plus three?
(Example: nine)

The Note You're Voting On

Ashus
17 years ago
Note that array keys are case sensitive.

<?php
$ar['w'] = true;

var_dump(isset($ar['w']),
      isset($ar['W']));
?>

will report:
bool(true) bool(false)

<< Back to user notes page

To Top