You should always remember that PHP is an interpreter (correct me if I am wrong). Perhaps it is a bit slower if you initialize variables and then do not use them, but not very much slower (nanoseconds). You should use the technique you like more/makes more sense.
If it was a compiled language it would not matter, because the compiler optimizes the code anyway.