Skip to content

Instantly share code, notes, and snippets.

@YNSTakeru
Created February 23, 2024 06:49
Show Gist options
  • Save YNSTakeru/24230e0b92630096ce1416da40eb8438 to your computer and use it in GitHub Desktop.
Save YNSTakeru/24230e0b92630096ce1416da40eb8438 to your computer and use it in GitHub Desktop.
phpでのmutable変数の対策
<?php
$candidateWinnerPlayers = [];
foreach($this->players as $player){
$candidateWinnerPlayers[] = clone($player);
}
$this->candidateWinnerPlayers = $candidateWinnerPlayers;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment