Jump to content

bigD

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

bigD's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. OK, it was correct. I was getting stale data from a mentally challenged programmer. All is well. How do I close/mark solved this thread?
  2. That is my actual code, except for hardcoding $name, which I output on debug, and it is correct...
  3. OK, I am officially stumped. I am trying to match a '[]' at the end of a string. Using $ to anchor doesn't work, nor does \z. $name = "cities[]"; if (preg_match("/\[\]\z/", $name)) { // why do I net get in here?? } Thanks.
  4. Thanks guys! It works perfect......
  5. Sorry... I meant using PHP...
  6. Can anyone tell me the best tools to read Excel files?
  7. I get a data dump in XLT format. Can I parse that with PHP?
  8. I got it... I was misreading my documentation.
  9. Hello, I come from a C and PERL background. I seem to have trouble finding how to do this easily. What is the PERL equivalent of: $var =~ s/^\+//g; // remove a plus from the beginning, and from the entire string. Thanks.
  10. I have a question on when PHP will allocate space in the code. Does it happen up front, or as the code executes? // some stuff if (some_conditional) { // something happens here and returns or exits } // we never get here $foo = array(); exit(0); In this example, does $foo get created?
×
×
  • 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.