A small collection of WTF code snippets sorted by language.

  • @Kacarott@aussie.zoneOP
    link
    fedilink
    62 months ago

    Some of the examples seem to be more “unintuitive for newbies”, but there are still some good ones in there

    • Fonzie!
      link
      fedilink
      11 month 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)