A small collection of WTF code snippets sorted by language.

  • Fonzie!@ttrpg.network
    link
    fedilink
    arrow-up
    1
    ·
    17 hours ago

    Yeah, just check the PHP section!

    My favourite is

    var_dump(true == 'bob') . PHP_EOL;   // bool(true)
    var_dump('bob' == 0) . PHP_EOL;   // bool(true)
    var_dump(true == 0) . PHP_EOL;   // bool(false)