Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/07/2019 in all areas

  1. Just use var_dump if you just need to see what the array contains.
    2 points
  2. I always use this snippet to debug my code / echo out the contents of an array or object or any object type. It takes a mixed type parameter, print_r echo "<pre>", print_r($_GET), "</pre>";
    1 point
  3. I might replace the " and " with ", ", then split. inputString.replace(/ and /g, ", ").split(/,[\s,]*/)
    1 point
  4. It's probably better not to know. ? The @ symbol is for error suppression. More information can be found here: https://www.php.net/manual/en/language.operators.errorcontrol.php
    1 point
This leaderboard is set to New York/GMT-04:00
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.