ffi / location
PHP library for determining the physical location of binaries
Installs: 38 299
Dependents: 8
Suggesters: 0
Security: 0
Stars: 12
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.4|^8.0
Requires (Dev)
- phpunit/phpunit: ^9.5
- squizlabs/php_codesniffer: ^3.7
- vimeo/psalm: ^5.4
This package is auto-updated.
Last update: 2024-10-29 18:03:54 UTC
README
Library for searching binary files in the operating system.
Requirements
- PHP >= 7.4
Installation
Library is available as composer repository and can be installed using the following command in a root of your project.
$ composer require ffi/location
Usage
Existence Check
Checking the library for existence.
use FFI\Location\Locator; $exists = Locator::exists('libGL.so'); // Expected true in the case that the binary exists and false otherwise
Binary Pathname
Getting the full path to the library.
use FFI\Location\Locator; $pathname = Locator::pathname('libGL.so'); // Expected "/usr/lib/x86_64-linux-gnu/libGL.so.1.7.0" or null // in the case that the library cannot be found
Binary Resolving
Checking multiple names to find the most suitable library.
use FFI\Location\Locator; $pathname = Locator::resolve('example.so', 'test.so', 'libvulkan.so'); // Expected "/usr/lib/x86_64-linux-gnu/libvulkan.so.1.2.131" or null // in the case that the library cannot be found