我想str_replace
在一个函数中。
str_replace(array('(', ')', array('"', '\'')), array('\(', '\)', '["|\']'), 'hello("test")');
hello\(["|']test["|']\)
这会起作用,但不是很有用:
str_replace(array('"', '\''), '["|\']', str_replace(array('(', ')'), array('\(', '\)'), 'hello("test")'));
我该如何解决这个问题?