preg-replace

    2熱度

    1回答

    我爲我的用戶提供了一個簡單的php和jquery聊天室。我目前正在用其鏈接的url版本替換www.和http://字符串,以使鏈接可點擊。這個工程真棒,但不趕上https://鏈接。我該如何改變以使其成爲http或https?下面是當前的代碼 $find = 'http://'; $check_for_links = strpos($message, $find); if($check_for

    -2熱度

    1回答

    我對preg_replace很糟糕,而且我很難弄清楚如何將單引號和雙引號添加到允許的字符。任何幫助將不勝感激。 $comments = "It's an- "Apple"[email protected]#$%^&*()="; $comments = preg_replace('/[^A-Za-z0-9\s,.!?+-]+', '', $comments); 輸出: 其AN-蘋果!?

    0熱度

    1回答

    如何用php替換url 爲什麼這段代碼不起作用。 請幫助 $mylogo = 'http://example.com/images/logo.png'; $inputmylogo = 'http://example.com/image.png'; $file = 'setting.php'; $content = file_get_contents($file); var_

    1熱度

    1回答

    我正在嘗試使用[secret]標記創建BB代碼。 BB代碼根據用戶級別「redacts」文本。但是,我有一個問題讓它正常工作。 我當前的代碼是: $replace = array(" ", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u",

    0熱度

    2回答

    以下是需要加以清理一些例如網址: http://example.com//path/應該改爲:http://example.com/path/ http://example.com/path/?&應該改爲:http://example.com/path/ http://example.com/path/?¶m=one應該改爲: http://example.com/path/?param=

    1熱度

    2回答

    首先,這與question有關我在一年前問過,現在我需要更改新代碼位https網站。 基本上我需要添加網站的網址,如果它丟失,我在前面的問題中描述。 如:/blog/images/image.png需要改變http://www.example.com/blog/images/image.png @anonymous已經給出了答案爲波紋管, $html = preg_replace('@(http:

    1熱度

    2回答

    如標題所示,我試圖使用preg_replace來刪除不在括號之間的所有內容。 例子: $item = "We are all words that don't matter! (We do matter!)"; 這應該然後返回 $item = "We do matter!";

    0熱度

    1回答

    我已查找此案例的其他結果,但無法自行修復。我會感激,如果有人能幫助我與preg_replace_callback更換此的preg_replace preg_replace("/[-_]([a-z])/e", "ucfirst('\\1')", ucwords($verb)); <?php /** @see Zang_Exception **/ require_once 'Exceptio

    1熱度

    2回答

    如何從字符串中替換字符?有時YouTube視頻標題包含這樣的字符。我不想替換!@#$%^ & *()。 我目前使用preg_replace('/[^A-Za-z0-9\-]/', '', $VideoTitle); 樣品陣列: $VideoTitles[]='Sia 2017 Cheap Thrills 2017 live '; $VideoTitles[]='TAYLOR SWIFT - S

    -1熱度

    1回答

    我想在下劃線之前替換所有數字,而不是替換下劃線和結束。下劃線應該像「斷點」一樣。 我有一個字符串前綴,如: 0_xxxx 1_xxxx 2_xxxx ,我不得不刪除該前綴。 有人請提供一個例子嗎?