RE: [PHP] Help with Array Walk

2002-02-28 Thread Ford, Mike [LSS]
-Original Message- From: Vidyut Luther [mailto:[EMAIL PROTECTED]] Sent: 28 February 2002 01:27 but when i do. array_walk ($fieldname, '$check-is_allletters'); I get the error. Warning: Unable to call $check-is_allletters() - function does not exist . RTFM:

RE: [PHP] Help with Array Walk

2002-02-28 Thread Ford, Mike [LSS]
-Original Message- From: Ford, Mike [LSS] [mailto:[EMAIL PROTECTED]] Sent: 28 February 2002 12:16 So you want: array_walk ($fieldname, array($check,'is_allletters'); OOPS! Make that: array_walk ($fieldname, array($check,'is_allletters')); But you'd have figured that out

Re: [PHP] Help with Array Walk

2002-02-28 Thread DL Neil
Hello Vidyut, I have a question regarding array_walk.. I couldn't find any help on the website or on irc.. didn't know where else to look. You've come to the right place. I'm stumped, and about to just copy the function on top of this script to make it work.. any ideas from anyone else ?.

[PHP] Help with Array Walk

2002-02-27 Thread Vidyut Luther
Hello, I have a question regarding array_walk.. I couldn't find any help on the website or on irc.. didn't know where else to look. I want to call a method in an object(class) , I can't seem to get it to work. the name of the array is $fieldname, when I run