Re: Single Quote in String functions

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Sancar Saran wrote:
Hi,

I cannot do any operation wiht single quote like

explode("'",$strContent);

Did I miss someting ?

Regards

Sancar

what do you mean by 'cannot do' ?

If I do:
<?php
$string = "part1 ' part2";
print_r(explode("'", $string));

it will return
Array(
   [0] = "part1 "
   [1] = " part2"
)

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux