It will depend on the exact system.
The cryptosystem of Castelluccia is additively homomorphic and is thus a PHE cipher.
The cipher of Domingo-Ferrer was broken by Wagner and others. Thus, I wouldn't classify it as either.
The cipher of Xiao, et al. is fully homomorphic.
To determine if a symmetric scheme is a PHE or FHE, just look at what operations it supports. If it supports a single operation (say addition), then it is PHE. If it supports both operations (addition and multiplication), then it is FHE.
Update
A recent trend in the HE encryption literature has been something called Somewhat Homomorphic Encryption (SHE). These are ciphers which support both addition and multiplication but not unlimited numbers of operations. E.g., BGN is a SHE cipher as it supports unlimited additions and one multiplication. The current FHE ciphers are all built using SHE ciphers plus a bootstrapping operation (or generating the keys such that enough of each operation can be supported to compute the desired function, making bootstrapping unnecessary).