That's normal - creating connections is relatively expensive, so a connection pool is used via pconnects in php/mysql. You can set max mysql persistent connections in mysql section of php.ini, the default is 25.
Depending on the makeup of your server, you may be better off not using pconnects. But these are idle processes and as long as they are not in the 100's shouldn't impede performance.