oldtimer Posted November 23, 2009 Share Posted November 23, 2009 Hi, I have this code <?php $content = '<a href="showfile.php?file=helloworld.pdf">PDF Link here'; ?> what i wanted to do is to find if the string contains a pdf and then add the #toolbar=0 if the $content variable contains "pdf". <?php if(strpos($content,"pdf") { // add after the #toolbar=0 // output should be ...helloworld.pdf#toolbar=0 } ?> Hope i made this clear and thanks for your time. Quote Link to comment Share on other sites More sharing options...
Psycho Posted November 23, 2009 Share Posted November 23, 2009 <?php $content = '<a href="showfile.php?file=helloworld.pdf">PDF Link here'; $content = preg_replace('/(file=[^.]*.pdf)/', '\\1#toolbar=0', $content); echo $content; //Output: // <a href="showfile.php?file=helloworld.pdf#toolbar=0">PDF Link here ?> Quote Link to comment Share on other sites More sharing options...
oldtimer Posted November 23, 2009 Author Share Posted November 23, 2009 Thank you for the help. Cheers! Quote Link to comment Share on other sites More sharing options...
Psycho Posted November 23, 2009 Share Posted November 23, 2009 Please mark the topic solved. Quote Link to comment Share on other sites More sharing options...
premiso Posted November 23, 2009 Share Posted November 23, 2009 Please mark the topic solved. They have not re-implemented that system yet Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.