amazon ec2 - How do I enable PHP functions from CLI? -
i need check , enable php functions in aws ec2 instance. (listed them below). i've gone through php.ini file can't find reference of these. don't see them when run php -i
. need install them 1 one? if so, how do on unix command line?
these functions
mbstring modules, zip , enabled gd2.
php functions enabled:
- dir
- readdir
- opendir
- eval
- exec
- set_time_limit
- ini_alter
- ini_set
- ini_restore
- php_uname
- popen
- proc_close
- proc_get_status
- proc_open
- shell_exec
- system
any appreciated
you dealing php extensions/modules, reconfigure php installation , rebuild
or add library. located in {your php installation dir}/extensions/
also see http://php.net/manual/en/function.dl.php
personally, build php scratch extension need.
Comments
Post a Comment