Suse appears to use init scripts to launch apps at start up and you will need to write a custom init script to launch your socket.php script.
At the bare minimum, you could create an executable script in /etc/rc2.d named S99socket containing
#!/bin/sh
/path/to/php /path/to/socket.php &
Statistics