1
vote
2answers
62 views

how do i delete <?= $var ?> in a chain with php

how do i delete <?= $var ?> from a chain (a url in this case). Here is what I already tried: $link = str_replace("<?= $var ?>", "", $link); but when i echo $link;, nothing appear. (I ...
6
votes
2answers
159 views

Regex str_replace

Would it be possible to incorporate a str_replace method with a regular expression, designed to catch url strings in a simple html < textfield > input type? I'm considering something simple like a ...
0
votes
1answer
15 views

Replace.string with a URL as parameter

Below I have this code: string _strTemplate = _strDownloadTemplate + IDReq + "/" + _strFileName; Uri url = new Uri(_strTemplate); As you can see, I'm converting the strTemplate (which carries the ...
3
votes
3answers
397 views

Format URL using PHP - http://www.google.com to www.google.com/; Also having trouble with str_replace()

I am having some trouble performing the following operation.. http://www.google.com --> www.google.com/ https://google.com --> www.google.com/ google.com --> www.google.com/ I am trying to ...
0
votes
1answer
413 views

php - get name of current page from url and reformat string

I have the following code that (1) gets the page / section name from the url (2) cleans up the string and then assigns it to a variable. I was wondering if there are any suggestions to how I can ...
0
votes
2answers
73 views

replace many urls into links

Here's my code: $post = $_POST['test']; ...
1
vote
2answers
132 views

Unknown Str_Replace On URL

I am trying to understand this one line of code below: str_replace('../', '', $route); Basically it says replace '../' with nothing in $route $route = ...
0
votes
1answer
472 views

Make valid and working url from string, php

I have a problem with producing valid urls from strings. E.g.: "http://mysite.de/go/".$text I want to add text, might be a title, to the link. The script behind go/ takes the title, gets the ID of ...
0
votes
2answers
311 views

better way for url change using str_replace, not regular expressions

I was changing css file urls like str_replace('url(', 'url(somelocation/', $content); now I want to exclude, absolute path ones, like url(/ does any one suggest something?
1
vote
1answer
409 views

PHP Replace Variables in URL

I wondered if it was possible to rewrite a URL so designed for the rewrite wrote in htaccess e.g. I have the URL: http://example.com/page.php?page=5&action=something But I want to change the ...