How to avoid undefined offset error in PHP ? Last Updated : 12 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The Offset that does not exist in an array then it is called as an undefined offset. Undefined offset error is similar to ArrayOutOfBoundException in Java. If we access an index that does not exist or an empty offset, it will lead to an undefined offset error.Example: Following PHP code explains how we can access array elements. If the accessed index is not present then it gives an undefined offset error. php <?php // Declare and initialize an array // $students = ['Rohan', 'Arjun', 'Niharika'] $students = array( 0 => 'Rohan', 1 => 'Arjun', 2 => 'Niharika' ); // Rohan echo $students[0]; // ERROR: Undefined offset: 5 echo $students[5]; // ERROR: Undefined index: key echo $students[key]; ?> Output: There are some methods to avoid undefined offset error that are discussed below: isset() function: This function checks whether the variable is set and is not equal to null. It also checks if array or array key has null value or not.Example: php <?php // Declare and initialize an array // $students = ['Rohan', 'Arjun', 'Niharika'] $students = array( 0 => 'Rohan', 1 => 'Arjun', 2 => 'Niharika' ); if(isset($students[5])) { echo $students[5]; } else { echo "Index not present"; } ?> Output:Index not presentempty() function: This function checks whether the variable or index value in an array is empty or not. php <?php // Declare and initialize an array // $students = ['Rohan', 'Arjun', 'Niharika'] $students = array( 0 => 'Rohan', 1 => 'Arjun', 2 => 'Niharika' ); if(!empty($students[5])) { echo $students[5]; } else { echo "Index not present"; } ?> Output:Index not presentarray_key_exists() function for associative arrays: Associative array stores data in the form of key-value pair and for every key there exists a value. The array_key_exists() function checks whether the specified key is present in the array or not.Example: php <?php // PHP program to illustrate the use // of array_key_exists() function function Exists($index, $array) { if (array_key_exists($index, $array)) { echo "Key Found"; } else{ echo "Key not Found"; } } $array = array( "ram" => 25, "krishna" => 10, "aakash" => 20 ); $index = "aakash"; print_r(Exists($index, $array)); ?> Output:Key Found PHP is a server-side scripting language designed specifically for web development. You can learn PHP from the ground up by following this PHP Tutorial and PHP Examples. Create Quiz Comment N nikitadabral30 Follow 0 Improve N nikitadabral30 Follow 0 Improve Article Tags : Web Technologies PHP PHP Programs PHP-Misc Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like