Geek of the Week

Published on Jan 13, 2008   //  Geek of the Week

Geek of the Week

Congratulations to this weeks geek Jeff. This weeks questions are…

1.  What php function would you use to change all characters in a variable to lowercase?

2.  What php function is the opposite of explode?

3.  What php function would you use to sort an array?

4.  What does the php function compact do?

5.  What php function would you use if you wanted to display no php errors on your page?

7 Comments to “Geek of the Week”

  • 1. what is a php?
    2. what is a php?
    3. what is a php?
    4. what is a php?
    5. what is a php?

    OMG… could I now be a “geek” too, or just that dumb-blonde thing kickin’ in?!!??!

  • Finally another Geek of the Week I’m geeky enough to participate in.

    1. strtolower()
    2. implode()
    3. Most often asort() or arsort(), but sort(), rsort(), ksort(), krsort() and natsort() have its uses too.
    4. Creates an array containing variables and their values. For each array compact() looks for a variable with that name in the current symbol table and adds it to the output array such that the variable name becomes the key and the contents of the variable become the value for that key.
    5. error_reporting(0);

  • The questions are hard, it’s probably because i’m not a geek :p

  • I will throw some HiFi questions in next week for you.

  • HiFi questions?!?! are those as hard as the questions above? How many weeks in a row can someone be named “geek”! lol

  • They can be hard.

    There is no limit to the number of weeks someone could win.

  • 1. strtolower()

    2. implode()

    3. sort()

    4. Make an array with variables and their values

    5. error_reporting(0)