Я создал очень простую колоду карт. Я использую 3 массива, $ колода, $ карты, & $ Используется. $ deck — это карты в игре, $ cards — массив сравнения, а $ used — массив сброса. Когда карты используются из $ deck, они попадают в массив $ used. Моя проблема в том, что когда они помещаются в массив $ used, они располагаются в числовом порядке. Я не хочу этого Мне нужно, чтобы они были в том же порядке, в котором они удалены из массива $ deck. Полный код ниже.
<?php
/*
This code creates a deck of cards and deals them
It also creates a discard pile of used cards. It never
deals duplicates and will re-shuffle the deck if it
gets under 7 cards.
*/
dealCards();
/*
This function creates the deck of cards.
It will deal out 5 cards and remove those
5 cards from the deck.
*/
function dealCards() {
// checks to see if a session has been created
if (isset($_SESSION["deck"])) {
$deck = $_SESSION["deck"];
} else {
// if session has not been created it
$deck = range(1, 52);
shuffle($deck);
$_SESSION["deck"] = $deck;
}
// comparison array.
$cards = range(1, 52);
// will use the same deck until it has 7 or less cards
if (count($deck) > 7) {
// deals 5 cards from the array $deck
for ($i = 0; $i < 5; $i++) {
print "<img src="/main/deck/$deck[$i].png" alt="Card: $deck[$i]" />";
// removes dealt cards from the deck
unset($deck[$i]);
// clears empty values from the array
$deck = array_values(array_filter($deck));
// replaces session data with new deck
$_SESSION["deck"] = $deck;
}
} else {
// shuffle the full 52 cards again if the deck is less than 7 cards
$deck = range(1, 52);
shuffle($deck);
$_SESSION["deck"] = $deck;
}
/*
compares $deck to the comparison array $cards
and places the differences in an array
called $used which then can be used as a discard
pile.
*/
$used = array_diff($cards, $deck);
// testing purposes.
print "<pre>";
print_r ($deck);
print "</pre>";
print "<pre>";
print_r ($used);
print "</pre>";
}
?>
Первое, что приходит мне на ум, это то, что когда deck
массив
// removes dealt cards from the deck
unset($deck[$i]);
Вы можете положить карту в $used
массив
// removes dealt cards from the deck then put them in the discard pile
$used[$i] = $deck[$i];
Но это будет работать только в первый раз. Во втором использовании dealCards
это будет перезаписано.
Плюс $used
массив, безусловно, будет иметь некоторую пустую позицию в нем.
Вам нужно, чтобы они постоянно хранились?
У меня это работает. Код нужно немного почистить, но, по крайней мере, он работает. Спасибо за помощь Wrikken и всем остальным. Ниже приведен модифицированный рабочий код.
<?php
/*
This code creates a deck of cards and deals them
It also creates a discard pile of used cards. It never
deals duplicates and will re-shuffle the deck if it
gets under 7 cards.
*/
dealCards();
/*
This function creates the deck of cards.
It will deal out 5 cards and remove those
5 cards from the deck.
*/
function dealCards() {
$used = array();
// checks to see if a session has been created
if (isset($_SESSION["deck"])) {
$deck = $_SESSION["deck"];
} else {
$deck = range(1, 52);
shuffle($deck);
$_SESSION["deck"] = $deck;
}
// will use the same deck until it has 7 or less cards
if (count($deck) > 7) {
if (isset($_SESSION["used"])) {
$used = $_SESSION["used"];
} else {
$_SESSION["used"] = $used;
}
// deals 5 cards from the array $deck
for ($i = 0; $i < 5; $i++) {
print <img src="/main/deck/$deck[$i].png" alt="Card: $deck[$i]" />;
$used[] = $deck[$i];
unset($deck[$i]);
// clears empty values from the array
$deck = array_values(array_filter($deck));
// replaces session data with new deck
$_SESSION["deck"] = $deck;
}
} else {
// shuffle the full 52 cards again if the deck is less than 7 cards
$deck = range(1, 52);
shuffle($deck);
$_SESSION["deck"] = $deck;
}
$_SESSION["used"] = $used;
}
?>