Last Updated: February 25, 2016
·
370
· ferncoder

isset weird behavior

A co-worker showed me a weird behavior in the php function isset().

This following little code

<?php
$str = "hello world!";    
echo isset($str['test']);

Return true.