Voting

: two plus two?
(Example: nine)

The Note You're Voting On

Ashus
16 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