7

Today I discovered first thing I personally prefer in JS over PHP.

let's say you have:
//pseudocode
if(sth){
let ret = 1;
} else {
let ret = 2;
}
if(sth_else){
return ret.toPrecision(2);
}
return ret.toPrecision(8);

In PHP this will work. JS will throw up becouse it managed to separate scopes. Its actually what I would like to be the case with PHP.

Comments
  • 4
    @24th-Dragon Well, they're fucked up
  • 4
    While I love PHP, it allows doing some dirty things like for example

    $array = [1,2,3]

    foreach($array AS $item) {/*whatever*/}

    echo $item; //outputs 3

    Its matter of that PHP is not "forgetting" variables unless the entire scope of sth like function changes.

    But it has actual uses. Consider this example:

    file 1:
    $foo = "hello world";
    require_once "template.php"

    file template.php:
    <h1><?=$foo?></h1>

    (without this it would be literally impossible to do clean templates in pure PHP)
  • 2
    Oh, so that explains a bug I could never understand. Yay.
  • 1
    @DubbaThony It doesn't have any actual use cases though. You example shows proper scoping in action since, as pr the docs: _When a file is included, the code it contains inherits the variable scope of the line on which the include occurs._
  • 0
    @inaba

    Yes, but that's consequence of this behaviour - remember that in PHP every include/require is added onto stack.
  • 2
    A language with no scope is a WTF in itself, it's so… 70's…

    Regarding the if statement: that's one reason I like functional languages where if is just an expression returning a result, and you can use the following:

    let ret = if sth then 1 else 2
  • 1
    @SomeNone

    It has scope but it works differently than one may expect or want.
  • 1
    Just declare the var outside of the if (before it's written to) and go think of more serious problems.
  • 0
    @DubbaThony Ugh. I get why, but that is so dirty.

    I prefer Ruby's approach where you use instance vars on the controller's instance. The view is a child of that instance, so it has access, and partial templates are grandchildren so they have access to both scopes. I'm simplifying it a bit (the data is copied rather than shared), but it's a very clean OOP approach.
  • 0
    @kamen One should always do this.
  • 0
    @kamen lol i know, i just daily do php and had to do some JS. In php you dont have to declare variable (actually my IDE would throw at my face unused variable - overwritten before used) so that felt natural to me thats how i ended up here.
  • 1
    @DubbaThony You should read your example again. You declare the variable foo, then, and this here is important, _you import the file you use foo in in the same scope you declared foo in_. It is not a consequence as it is stated in the documentation. Again, from the docs:

    > When a file is included, the code it contains inherits the variable scope of the line on which the include occurs. Any variables available at that line in the calling file will be available within the called file, from that point forward. However, all functions and classes defined in the included file have the global scope.

    https://php.net/manual/en/...
  • 0
    @inaba

    Fair enough. Im pointing out that if you call file and it throws exception for example and you have xdebug for example you will clearly see that stack depth incerased from this inclusion.
  • 0
    @DubbaThony Yes that is exactly what calling a function does but it has nothing to do with what you're talking about and it doesn't demonstrate whatever side effect you think might be happening.
  • 0
    @SomeNone That works even in C using the Elvis operator:

    int x = (argc == 1) ? 4 : 2;
  • 0
    @inaba

    I mean php has some non-standard scoping. In meaning, if you call function, ofc you dont derrive scope, but when you include file, its internally treated one way or another like function call, but derrives scope.

    Its in generall mess but imho it makes sense and I can justify it. But i like strict languages to point of beeing obscure, thats why i created this rant.

    Idk which language allowed you this but i loved it:

    //pseudocode
    int a = 1, b=1;
    { //scope from nowhere. Becouse you can and its valid.
    int a = 2;
    Echo a, b; //21
    }
    echo a; // 1

    Not really usefull but intriguing and strict as sh**t.
  • 0
    @DubbaThony > In meaning, if you call function, ofc you dont derrive scope, but when you include file, its internally treated one way or another like function call, but derrives scope.

    You're stating this like it's something surprising when, again, this is exactly what the documentation says happens. And regarding your example, none of the languages I've used (barring php) would allow you to do that because you can't redeclare an already declared variable.
  • 0
    I don't like in php that it throws error when some variable doesn't exists. In javascript you get undefined. You need to check for availability with isset function in php.
  • 0
    @inaba

    Im not saying like it was something new õ.õ
  • 1
    @Pogromist If a variable doesn't exist in JS you get a ReferenceError thrown. If it has only been declared you get undefined
  • 0
    @inaba oh, if array index doesn't exists it will throw error in php.
  • 0
    @Pogromist in javascripts arrays are basically just objects wiht a length property and then number properties with their __proto__ set to Array.prototype (and of course a little bit more syntactic sugar) IE

    const arr = { length: 2, "0": "Foo", "1": "Bar", "__proto__": Array.prototype };

    And since accessing properties with [] gives you undefined you get undefined when something doesn't exist. This is why you can also do

    const arr = [];

    arr["foo"] = "bar"

    console.log(arr.foo)

    Bascially, but ofc there's a lot more to arrays than just that. None of it really that important for every day use tbh
Add Comment