Fuse binding for php

I am writing an application that has so far been written in PHP, from interface to daemons. I need to use fuse and would like to continue using PHP just for consistency. However, there are no bindings for PHP. Python, Java, etc. They have bindings, and I can code in these languages, I just do not want additional dependencies in this project. I saw the project in Google code but did nothing. Does anyone know if they were written?

+4
source share
3 answers

I wrote an extension for PHP that provides libfuse bindings. I have read support for support, but have not finished writing support. I will finish it in the end, but if you want to work with him, I will be happy to take the patches.

http://pecl.php.net/fuse

+4
source

Take a look at these other bindings and write a PHP extension !:-)

+3
source

Another binding is available: https://github.com/fujimoto/php-fuse

This blog post explains how to install it: http://blog.728.lu/?p=5

+2
source

Source: https://habr.com/ru/post/1277260/


All Articles