I want to use Prolog with PHP. Is it possible?
feedback
|
|
There are always the exec-familiy functions to execute/spawn another process. | |||
|
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. | |||
|
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: | |||
|
feedback
|