How can you optimize the code to prevent performance issues when incrementing a number in PHP?

When incrementing a number in PHP, you can optimize the code by using the pre-increment operator (++$num) instead of the post-increment operator ($num++). This is because the pre-increment operator is more efficient as it increments the value before returning it, while the post-increment operator increments the value after returning it, resulting in unnecessary overhead. By using the pre-increment operator, you can prevent performance issues when incrementing a number in PHP.

$num = 5;
for ($i = 0; $i < 1000000; $i++) {
    ++$num;
}
echo $num;