0
我得到了不同字符串的數組的完整列表,我希望包含「_pmx」的字符串放在我的下拉列表中。PHP:字符串得到了一個子字符串,顯示字符串
$buff = ftp_nlist($conn_id,"BackupFiles");
echo "<select id='pmxbestand' name='pmxbestand'>";
foreach($buff as $i=>$value) {
$resultaat = strstr($value, '_pmx');
echo "<option value='".$resultaat."'>".$resultaat."</option>";
}
echo "</select>";
我以爲這會做伎倆,但事實證明它沒有,任何人都可以幫助我嗎?