[PHP] remove ' from string

2003-03-19 Thread Fredrik
Hi

Any functions to remove'from a longstring?


Fred



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] remove ' from string

2003-03-19 Thread Dan Hardiker
 Any functions to remove'from a longstring?

?php

  $myLongString = ..'..'.'.;
  $myLongString = str_replace(', , $myLongString);

?

et voila! Simple huh ;)

For more info, check out: http://www.php.net/str_replace


-- 
Dan Hardiker [EMAIL PROTECTED]
ADAM Software  Systems Engineer
First Creative



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] remove ' from string

2003-03-19 Thread John W. Holmes
 Any functions to remove'from a longstring?

Care to say why you need to do this? You may be doing a workaround
instead of a solution...

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php