how to install posix in php

Posted by Nizzy on Stack Overflow See other posts from Stack Overflow or by Nizzy
Published on 2010-02-04T04:47:44Z Indexed on 2010/03/18 8:01 UTC
Read the original article Hit count: 708

Filed under:
|

posix does not appear when I run php -m cmd, however, I see it from the phpinfo() –enable-posix=shared on Linux with Plesk 9.

Basically, I can't use posix_*() functions as described at http://www.php.net/manual/en/ref.posix.php

this shows doesn't exists:

if (function_exists(‘posix_getuid’)) { echo “posix_getuid available”; } else { echo “posix_getuid not available”; // this prints in my server. }

could someone show me how to install it? thank you

[PHP Modules]
bz2
calendar
ctype
curl
date
dbase
dom
exif
fileinfo
filter
ftp
gd
geoip
gettext
gmp
hash
iconv
imap
ionCube Loader
json
libxml
mbstring
mcrypt
memcache
mhash
mysql
mysqli
openssl
pcntl
pcre
PDO
pdo_mysql
pdo_sqlite
readline
Reflection
session
shmop
SimpleXML
sockets
SPL
sqlite
standard
tokenizer
wddx
xml
xmlreader
xmlwriter
xsl
zip
zlib

© Stack Overflow or respective owner

Related posts about posix

Related posts about php