Install the PARADOX extension for PHP

I have ApacheFriends XAMPP running on my Windows computer and am trying to access some Paradox database files directly from PHP.

I see that there is an extension for this, but how to install it for my Windows system?

+3
source share
2 answers
  • copy the .dll extension to path\to\xampp\php\ext\
  • and a line similar to extension=php_paradox.dllin path\to\xampp\php\php.ini, where php_paradox.dll is the name of your .dll extension file
  • configure the extension options in path\to\xampp\php\php.ini, if any, to suit your extensions
  • restart apache

pecl, pecl install paradox . , :

  • php
  • path/php-src/ext/ dir
  • ./configure --prefix=/where/to/install/php --enable-debug --enable-maintainer-zts --enable-cgi --enable-cli --with-mysql=/path/to/mysql --with-PARADOX=shared,PATH/TO/DIR
  • make, make install, .dll install/path/ext/ dir
+2

, , XAMPP- Paradox . px_get_record() et. . .

0

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


All Articles