[PHP] array_walk inside class method

2002-01-05 Thread S. Murali Krishna
Hi All, I want to use "array_walk" function inside a class method. But the problem is i want the second argument to array_walk ( function name ) be a another function of the same class. when i gave like that its telling Error : function not exist. class some() { function func

[PHP] want HTML class or php library

2002-01-05 Thread S. Murali Krishna
Hi Evrbdy Is there any HTML library or php class to print all the tags of HTML in a function call. S.Murali Krishna [EMAIL PROTECTED] = We grow slow trying to be great

Re: [PHP] array_walk inside class method

2002-01-07 Thread S. Murali Krishna
Hi Thanks for ur help. Its Working but I couldn't understand the syntax given by u can u explain pls. Thanks again. On Sun, 6 Jan 2002, Gyozo Papp wrote: > it may be better: > > array_walk($this->array, array(&$this, 'func1'); > > "Attila Strauss" <[EMAIL PROTECTED]>

Re: [PHP] strip from

2002-01-07 Thread S. Murali Krishna
Hi, Ur quest is not clear. Whether u want to delete everything upto tag or only tags up to body tag. anyway this might work for the former. $parsed = preg_replace("/\\n/","",$html); // to remove '\n' in HTML file $parsed = preg_replace("/^(.*)(" tag Thanks. On Mon, 7 Jan 2002, WB

Re: [PHP] strip from

2002-01-07 Thread S. Murali Krishna
Hi, the code u sent is displaying the html as it is, but There is more than one way to do that. Atmost we can atleast do this. $pos = strpos($html,"/","",$start); print "$start $html" ; On Mon, 7 Jan 2002, Jimmy wrote: > Hi WB, > > > > Hi i need to stri

Re: [PHP] A Problem With Loops

2002-01-10 Thread S. Murali Krishna
Show the loop code. On Thu, 10 Jan 2002, Ash Young wrote: > Hi, > > I am having a problem with any type of loop, for, foreach, while. I have a > PHP script that loops through an array that contains the contents of a text > file and processes the data it recieves. > > My problem is that the

[PHP] Is there Any way to call Non-Existent function in PHP

2002-01-16 Thread S. Murali Krishna
Hai ALL Is there any way to capture function call in PHP and redirect to some other function if that function doesn't exists. Perl programmers remind AUTOLOAD method in a package. S.Murali Krishna [EMAIL PROTECTED] = We grow slow trying

Re: [PHP] Is there Any way to call Non-Existent function in PHP

2002-01-16 Thread S. Murali Krishna
uot;IMAP functions are available.\n"; > } else { > echo "IMAP functions are not available.\n"; > } > > HTH > > Neil > > "S. Murali Krishna" wrote: > > > Hai ALL > > Is there any way to capture function call in PHP &g

[PHP] How to call Calling Non-Existing function

2002-01-21 Thread S. Murali Krishna
Hi PHP Experts, Is there any way to call a non-existent or undeclared function and redirect the call to someother function by knowing its non-existense. Is there any try() and catch() idea or any configurations, or may be either error handler like thing. for example if

Re: [PHP] How to call Calling Non-Existing function

2002-01-21 Thread S. Murali Krishna
etruchek (aki Zliy Pes) > http://zliypes.com.ua > mailto:[EMAIL PROTECTED] > - Original Message - > From: "S. Murali Krishna" <[EMAIL PROTECTED]> > To: "PHP List" <[EMAIL PROTECTED]> > Sent: Monday, January 21, 2002 1:17 PM > Subject: [PHP]

Re: [PHP] array_walk inside class method

2002-01-22 Thread S. Murali Krishna
yourself if u have time. It is urgent . pls Thanks in Advance On Mon, 7 Jan 2002, S. Murali Krishna wrote: > Hi > Thanks for ur help. > Its Working but I couldn't understand the syntax given by u > can u explain pls. > > Thanks again. > > >