I want to use Prolog with PHP. Is it possible?

link|improve this question

"Use" in what way? Please elaborate. – VolkerK Aug 19 '09 at 9:26
to run Prolog programs in PHP, ex. solving Einstein's riddle sandbox.rulemaker.net/ngps/119 – Colargol Aug 19 '09 at 9:30
feedback

3 Answers

up vote 3 down vote accepted

There are always the exec-familiy functions to execute/spawn another process.

link|improve this answer
feedback

Most Prologs allow for prolog code to be compiled into a binary. You could try calling this binary from within PHP using some kind of process call as already mentioned.

link|improve this answer
feedback

As suggested above, you can execute a Prolog interpreter or binary. However, most Prolog implementations also export a C api that can be used to call the Prolog interpreter. You could create a small PHP module to start an interpreter and execute queries. For instance, the Sicstus documentation describes using Prolog from C in detail:

http://www.sics.se/sicstus/docs/latest4/html/sicstus.html/Mixing-C-and-Prolog.html#Mixing-C-and-Prolog

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.