0

我想我在 PHP 上是个菜鸟。

我正在尝试将 url 模式更改为另一种模式

http://da.feedsportal.com/c/34762/f/640634/s/2dd0817c/l/0L0Sexample0Bco0Bkr0Carti0Cpolitics0Cassembly0C5933970Bhtml/ia1.htm

http://www.example.co.kr/arti/politics/assembly/593397.html

所以我只从原始网址中获取“example0Bco0Bkr0Carti0Cpolitics0Cassembly0C5933970Bhtml”并稍微调整一下“0B”->“。” 和“0C”->“/”

da.feedsportal.com/c/34762/f/640634/s/2dd0817c/l/0L0S 和 /ia1.htm 等其他部分应删除。

任何帮助将不胜感激。

4

2 回答 2

1

只需使用urlencode

echo urlencode("http://www.example.co.kr/arti/politics/assembly/593397.html");
//=> http%3A%2F%2Fwww.example.co.kr%2Farti%2Fpolitics%2Fassembly%2F593397.html

那你就不用自己写了

于 2013-06-27T03:12:09.320 回答
0

使用strposstrrpossubstrstr_replace。我们将分4个主要步骤进行。查找子字符串的开始和结束。一点验证。获取子字符串。转换子串。

基本上:

function convert ($inputString) {
    $start = strpos( $inputString, '0L0S' );
    $end = strrpos( $inputString, '/' );

    if(! $start){
        return false;
    }

    $start = $start + 4; // this is because strpos gives start of found string
    $length = $end - $start;
    $innerString = substr( $inputString, $start, $length);

    $pass1 = str_replace ('0B', '.', $innerString);
    $pass2 = str_replace ('0C', '/', $pass1);

    return $pass2;
}

我敢肯定有一种奇特的方法可以做到这一点。但这应该有效。

于 2013-06-27T21:12:39.270 回答