Loading c libraries from php

Posted by Thomas Ahle on Stack Overflow See other posts from Stack Overflow or by Thomas Ahle
Published on 2010-04-04T11:02:49Z Indexed on 2010/04/04 11:03 UTC
Read the original article Hit count: 283

Filed under:
|
|
|

Hi, in a recent project I've come really need the lib tre matching library.

However the project is in php, and there are no php bindings for the library.

I've tried to google how to create an interface for c libs, but all I found was the dl function which seams to load only php extensions.

What am I missing?

© Stack Overflow or respective owner

Related posts about tre-library

  • Fuzzy Regular Expressions

    as seen on Stack Overflow - Search for 'Stack Overflow'
    In my work I have with great results used approximate string matching algorithms such as Damerau–Levenshtein distance to make my code less vulnerable to spelling mistakes. Now I have a need to match strings against simple regular expressions such TV Schedule for \d\d (Jan|Feb|Mar|...). This means… >>> More

  • Loading c libraries from php

    as seen on Stack Overflow - Search for 'Stack Overflow'
    Hi, in a recent project I've come really need the lib tre matching library. However the project is in php, and there are no php bindings for the library. I've tried to google how to create an interface for c libs, but all I found was the dl function which seams to load only php extensions. What… >>> More

Related posts about php