Is there any way to let the cpu handle some operations in PHP (quite like openCL) but is available in native php (without having PHP-openCL implemented)?
/E:
What i mean:
I am coding some php cli scripts
Everything you do in php (variables, etc.) will be cached in the ram. But you still can access the RAM directly (shmop - Link), which makes it way faster. (This is an example to access deep system resources, i just want to know if there are ways to access other deep system resources)
I want to acces the CPU directly for having speed up some operations by doing so. (in context of multithreading (pcntl_fork and running inside an endless while-loop in php cli script). Is there a way to skip the c-handler (dunno if this is the right expression).
OpenCL was just an example =)