當我嘗試打印從該函數返回的數組時,我得到一個空白屏幕。array_combine爲什麼不返回數組?
我的陣列$terms
和$definitions
都是相同的長度,他們存在之前和之後我呼籲make_associative_array()
。
function make_associative_array() {
return array_combine($terms, $definitions);
}
$c = make_associative_array();
print_r($c);
$方面:
Array (
[0] => Nock (verb) [1] => End [2] => Serving [3] => Nock (noun)
)
$定義:
Array (
[0] => To place an arrow against the string prior to shooting. [1] => A group of arrows shot during a tournament. Usually 6. [2] => Thread wound around a bow string to protect the string. [3] => A notch at the rear of an arrow. The bow string is placed in the nock.
)
我使用PHP 27年6月5日
沒有必要重複一個已經存在的答案(你可以投票現有的答案,你知道...) – Dekel
@Dekel。我沒有重複答案。我給出答案,通過在localhost中執行hist代碼給出答案。如果我們在localhost中exicute併發布它需要時間,當我們發佈後 – iCoders
需要時間。您的回答正是我已經寫過的。你能解釋一下這些差異嗎? – Dekel