php trim不起作用的解決辦法:首先使trim以相反的順序接受參數;然後使用“$post_Value = trim($str, "_");”語句進行操作;最後透過“str_replace ”函數刪除標籤即可。
推薦:《PHP影片教學》
具體問題:
#我正在嘗試使用trim從$ _POST數組中返回的資料中刪除下劃線字元。我試過用
$post_Value= str_replace("_", " ", $key)
但是文字似乎沒有作為單一字串返回。它在每個條目之間被打破。然後我嘗試修剪這樣:
<?php $connection = mysqli_connect(DB_SERVER, DB_USER, DB_PASS, DB_NAME); // Test if connection succeeded if (mysqli_connect_errno()) { die("Database connection failed: " . mysqli_connect_error() . " (" . mysqli_connect_errno() . ")"); } if (isset($_POST)) { $str = ""; foreach($_POST as $key => $value) { $str = $str . $key . ","; } $post_Value = trim("_", $str); } $query = "UPDATE player_match SET categoryOption='$$post_Value' WHERE id=1"; ?>
當我使用trim函數時沒有任何反應它不會刪除_字元。我最終的目標是將逗號分隔的清單作為單一字串放在我的資料庫中。為什麼我的trim()函數在這種情況下不起作用?
UPDATE:發現076402276aae5dbec7f672f8f4e5cc81鑑於頁面資源,所以我不得不做以下組合:
$post_Value= str_replace("<br_/>", "", $str); $post_Value2= str_replace("_", " ", $post_Value); $post_Value3= rtrim($post_Value2,",submit,"); echo $post_Value3; $query="UPDATE player_match SET categoryOption='$post_Value3' WHERE id=1";
解決方案:
首先, trim()以相反的順序接受參數: $str ;
然後是$character_mask 。
所以你應該使用: $post_Value = trim($str, "_");
#其次, trim() 僅在字串的開頭和結尾對字串進行字串處理。如果字串被非屏蔽字元包圍,則不會從字串中刪除任何屏蔽字元。
實際上你應該使用帶有空替換字串的str_replace() (你已嘗試將一個空格作為替換):
$post_Value= str_replace("_", "", $key)
如果您還想刪除0c6dc11e160d3b678d68754cc175188a標籤(在其典型變體中),您可以透過單一str_replace()呼叫來執行此操作,如下所示:
$post_Value= str_replace(array("_", "<br>", "<br/>", "<br />"), "", $key)
以上是php trim不起作用怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!