I think we have a bit of a misunderstanding going on here.
I was under the impression that hoffi meant "can I get a link identifier in one PHP object or file and re-use it in another object or file"
Indeed that could mean using it in PHP objects and include files, but it could also mean using it across pages.
Pconnect creates a "permanent" or at least apperently permanent database connection between the PHPengine and the database.
This does mean that you have to call pconnect() to fetch the identifier for that connection, but there is no new connection made every time you call pconnect(). (unless there aren't enough connections available)
So yes, it's possible to create database connections that are "permanent" and yes, you can re-use that link-identifier in several files during the same request,
but no, it's not possible to use connect() in one page, fetch a link identifier, pass that on to the next page, and continue to work with that link-identifier.