Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP isset for an array element while variable is not an array

Tags:

php

isset

$a = 'a';
echo isset($a['b']);

This code returns 1. Why?

like image 971
Eddie Avatar asked Sep 10 '26 21:09

Eddie


2 Answers

String characters can be referenced by their offset using syntax like $a[0] for the first character, e.g.

$string = 'Hello';
echo $string[1];  // echoes 'e'

so PHP is recognising that $a is a string; casting your 'b' to a numeric (which casts to a 0), and trying to test isset on $a[0], which is the first character a

Though it should also throw an illegal offset 'b' warning if you have errors enabled

EDIT

$a = 'a';
echo isset($a['b']), PHP_EOL;
echo $a['b'];

PHP 5.3

1
a

PHP 5.4

Warning: Illegal string offset 'b' in /Projects/test/a10.php on line 6
a

PHP 5.5

PHP Warning:  Illegal string offset 'b' in /Projects/test/a10.php on line 6

Warning: Illegal string offset 'b' in /Projects/test/a10.php on line 6
a
like image 195
Mark Baker Avatar answered Sep 13 '26 10:09

Mark Baker


Only for php 5.3:

so lets do it slowly:

$a['b'];

returns 'a' because b is converted to 0 and $a[0] (the first char of 0 = a)

isset($a['b']);

return true because $a['b'] is 'a' not null

echo true;

outputs "1" because true is converted to a string and this to "1".

like image 33
Christoph Diegelmann Avatar answered Sep 13 '26 10:09

Christoph Diegelmann