Jump to content

help with quotes


andz

Recommended Posts

that particular string would need to be wrapped with different quotes (double quotes) to not throw an error otherise it would need to be excaped.....

//notice Alt_F4's string was also wrapped in double quotes containing the single inner quotes..
$str = str_replace("'%'","'%","'%'testinghere'%'");

//this will be ok...
$someVariable1 = '%\'testinghere\'%';  //escaped the inner quotes with backslash \ .....

//wrong way.... will throw an error
$someVariable2 = '%'testinghere'%';

Link to comment
https://forums.phpfreaks.com/topic/160629-help-with-quotes/#findComment-847729
Share on other sites

how can i apply this on a solution? like str_replace

 

thanks

 

that particular string would need to be wrapped with different quotes (double quotes) to not throw an error otherise it would need to be excaped.....

//notice Alt_F4's string was also wrapped in double quotes containing the single inner quotes..
$str = str_replace("'%'","'%","'%'testinghere'%'");

//this will be ok...
$someVariable1 = '%\'testinghere\'%';  //escaped the inner quotes with backslash \ .....

//wrong way.... will throw an error
$someVariable2 = '%'testinghere'%';

Link to comment
https://forums.phpfreaks.com/topic/160629-help-with-quotes/#findComment-847784
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.