方法1: php コマンドで調べる
$ php -i | grep 'include_path'
include_path => .:/Users/maku/pear/share/pear => .:/Users/maku/pear/share/pear
方法2: get_include_path() の戻り値で調べる
$ php -r 'echo get_include_path();'
.:/Users/maku/pear/share/pear
$ php -i | grep 'include_path'
include_path => .:/Users/maku/pear/share/pear => .:/Users/maku/pear/share/pear
$ php -r 'echo get_include_path();'
.:/Users/maku/pear/share/pear