我嘗試了很多不同的方法,但我不能從數組中取消設置變量。我從一個字符串開始,並將其分解爲一個數組,現在我想刪除Bill。我缺少一些東西?我已經訪問了php.net和我,仍然卡...未設置()不起作用PHP
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<?php
$names = "Harry George Bill David Sam Jimmy";
$Allname = explode(" ",$names);
unset($Allname['Bill']);
sort($Allname);
$together = implode("," ,$Allname);
echo "$together";
?>
</body>
</html>
你有一個名稱數組作爲值,但你試圖使用該值作爲'索引'。它正在查找位置「Bill」的數據,該數據不存在。 – christopher
未設置($ Allname [2]) - >它在尋找索引,不珍惜 – pbenard
紙幣是陣列不是數組 –