You'll need shell access.
First, find out what user Apache runs under (I'm assuming apache & a *nix host). This is usually "nobody".
Next, chmod your PHP files:
chmod 640 *.php
Then, change the owner of the files to be YOU (i.e. your username):
chown myname *.php
Finally, change the group of the files to be the APACHE USER (probably "nobody")
chgrp nobody *.php
That way, Apache can read your PHP, you can read and write your PHP, but nobody else can do either.
Tom L