I always have trouble with regex, I basically have a url, for example:
http://somedomain.com/something_here/bla/bla/bla/bla.jpg
What I need is a preg_replace() to replace the something_here
with an empty string, and leave everything else in tact.
I have tried the following and it replaces the wrong parts:
$image[0] = preg_replace('/http://(.*)/(.*)/wp-content/uploads/(.*)/','$2' . '',$image[0]);
This ends up leaving only the part I want to replace, rather than actually replacing it!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…