A small collection of WTF code snippets sorted by language.

  • Kacarott@aussie.zoneOP
    link
    fedilink
    arrow-up
    2
    ·
    21 days ago

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

    • 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)