preg-replace

    -1熱度

    3回答

    這是我創建的PHP代碼Replac A HREF值,以新的URL $string = "<a href='http://example.com/test'>click here</a> <a href='http://example.com/test.mp3'>the site</a>"; $newurl = "http://newurl.com"; $pattern = "/(?<=hre

    -1熱度

    3回答

    我想請使用的preg_replace或str_ireplace包裹中發現的關鍵字周圍的跨度類的標籤,但與str_ireplace將削減一個字,如「一半木材加工如」: <span class="highlight">wood</span>ing 這裏的針,乾草堆的例子,要求回報率: 針: wood 草堆: wood and stuff this doesnt contain the key

    2熱度

    1回答

    如何給定字符串中的特定單詞的樣式? 我hyave款式特定的詞的功能,從給定的字符串但這不是UTF-8字符串 header('Content-type: text/html; charset=utf-8'); function bold($string, $word) { return preg_replace('/\b'.$word.'\b/', '<strong>'.$word.'

    1熱度

    2回答

    我試圖用「18:00」和「18:00/23:00」替換時間字符串,如:「18.00」或「18.00/23.00」。 現在我做了什麼,但它不工作,我認爲這個 preg_replace("/\d{1,2}.\d{1,2}/","$1:$2","18.00/23.00");

    1熱度

    1回答

    我有這樣一羣Nginx的虛擬主機文件: # This file was autogenerated by Puppet [ wordpress::vhost ] # Any manual edit to this file will be automatically removed # ©2016, DevOps team server { listen 443 ssl;

    0熱度

    1回答

    我有這個字符串: [000] Foo [???] Foo [020] Foo [???] Foo [045] Foo [???] Foo [???] Foo [110] Foo [???] Foo 我需要檢查[XXX]值,每一行,但它需要智能: 如果???值0**行之間>替換到0??。 期望的結果: [000] Foo [0??] Foo [020] Foo [0??]

    1熱度

    3回答

    我們, 我想替換一個文本,添加特定單詞的特定鏈接。 所以,我創建了一個動態數組像這樣: $replace = array ( "ferrari" => '<a href="x">ferrari</a>', "ferrari 2" => '<a href="x">ferrari 2</a>' etc. ) 我找到了一種方法來代替文字使用: preg_replace

    0熱度

    2回答

    給定以下字符串(是,STRING,不是數組),我想在國家名稱周圍添加雙引號。 $string = "Array ([0] => Array ([nicename] => Afghanistan [phonecode] => 93) [1] => Array ([nicename] => United States [phonecode] => 1)"; 我想下面的字符串: Array ([0] =

    2熱度

    3回答

    我有一篇HTML標籤的文章。這是一個有3/5圖像的長篇文章。現在我想更新每個圖像src的屬性。例如: 圖片的HTML標記看起來像: <img class="aligncenter" style="display: block;margin-left:auto;margin-right:auto;" src="http://img.zszywka.com/0/0269/w_0980/moj-swia

    0熱度

    1回答

    我想用preg_replace清理一個字符串,但我想這個字符contine() - 圓括號 我使用這個代碼 $string = preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $string); $string = preg_replace('/[^\p{Latin}\d ]/u', '', $string); 我想刪除除括號內的字母和數字