Jump to content

[SOLVED] E_ALL: Check for a $_GET index?


tmallen

Recommended Posts

With this sort of code:

 

<?php
//...
        $this->sortState = $_GET[$name . 'Sort'] ? 
            $_GET[$name . 'Sort'] : self::DEFAULTSORT;
//...
?>

 

E_ALL reporting throws this notice:

 

Notice: Undefined index: YearsSort in ScriptName.php on line 16

 

depending on which $name . 'Sort' isn't in the URL. But that ternary checks if it exists, right? So why do I get that notice? Obviously, the script works fine, and I shouldn't stress over this sort of notice, but I'd like to know what the preferred way is to fix it. An (!empty($_GET[...])) check?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.