The project shows how to call DLL on Linux.
The code is based on that from the article Writing DLLs for Linux apps.
The DLL on Linux is .so
(Shared Object) instead of .dll
(Dynamic-link library) which you often see on Windows.
printHelloworld
call functionreturnHelloworld()
inreturnHelloworld.so
returnHelloworld.so
return string"Hello World"
to themain()
function inprintHelloworld
printHelloworld
prints the string"Hello World"
to console
make
and you will see:
- With bash, you can start PHP with command
php -a
- then call the dynamic-link file
printHelloworld
echo
the return value ofprintHelloworld
on screen