Coder Social home page Coder Social logo

Comments (5)

Rican7 avatar Rican7 commented on May 2, 2024

An "empty" (blank string) parameter is completely legal in HTTP, so I'm not sure how I feel about this.

For example, sending a query parameter with no value still yields a blank/empty value, as compared to a "null" value:

from klein.php.

Surt avatar Surt commented on May 2, 2024

Yep, you are right. Maybe adding a third parameter, "$on_empty=false"? So if you override it to true it will check for a non blank, null value.

public function param($key, $default = null, $on_empty = false)
    {
        // Get all of our request params
        $params = $this->params();
        return isset($params[$key]) ? ($on_empty && empty($params[$key]))?$default:$params[$key] : $default;
    }

from klein.php.

Rican7 avatar Rican7 commented on May 2, 2024

Yea, you could do that, but having multiple optional params feels a little dirty (sometimes you can't avoid it, though), and stacking ternary's in PHP is never a good idea.

From the PHP.net manual:

Note:

It is recommended that you avoid "stacking" ternary expressions. PHP's behaviour when using more than one ternary operator within a single statement is non-obvious:

from klein.php.

Surt avatar Surt commented on May 2, 2024

Yep, I already changed it. About multiple params.. well, I prefer to have it on the function interface than checking it on my code, each time. Pasted here if someone wants to use it.

public function param($key, $default = null, $on_empty = false)
    {
        // Get all of our request params
        $params = $this->params();
        return ( (!isset($params[$key])) || ($on_empty && empty($params[$key])))?$default:$params[$key];
    }

from klein.php.

Rican7 avatar Rican7 commented on May 2, 2024

Thanks for understanding! And thanks for leaving your code for someone else to run into. :)

from klein.php.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.