這篇文章主要介紹了php禁用函數設置及查看方法,結合實例形式分析了php禁用函數的方法及使用php探針查看禁用函數信息的相關實現技巧,需要的朋友可以參考下
本文實例講述了php禁用函數設置及查看方法。分享給大家供大家參考,具體如下:
打開PHP.INI,找到這行:
disable_functions =
在后面那里加上要禁用的函數,如禁用多個函數,要用半角逗號 , 分開
給個例子:
disable_functions = passthru,exec,system,popen,chroot,scandir,chgrp,chown,escapeshellcmd,escapeshellarg,shell_exec,proc_open,proc_get_status
建議在主機上禁用的函數:
disable_functions = system,exec,shell_exec,passthru,proc_open,proc_close, proc_get_status,checkdnsrr,getmxrr,getservbyname,getservbyport, syslog,popen,show_source,highlight_file,dl,socket_listen,socket_create,socket_bind,socket_accept, socket_connect, stream_socket_server, stream_socket_accept,stream_socket_client,ftp_connect, ftp_login,ftp_pasv,ftp_get,sys_getloadavg,disk_total_space, disk_free_space,posix_ctermid,posix_get_last_error,posix_getcwd, posix_getegid,posix_geteuid,posix_getgid, posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid, posix_getppid,posix_getpwnam,posix_getpwuid, posix_getrlimit, posix_getsid,posix_getuid,posix_isatty, posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid, posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname
在主機上面如何查看禁用的函數列表,我從網上找了一個非常不錯的探針
?phpheader( content-Type: text/html; charset=utf-8 header( Cache-Control: no-cache, must-revalidate header( Pragma: no-cache error_reporting(0);ob_end_flush(); !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns= http://www.w3.org/1999/xhtml head meta http-equiv= Pragma content= No-cache / meta http-equiv= Expires content= 0 / meta http-equiv= cache-control content= private / meta http-equiv= Content-Type content= text/html; charset=utf-8 / //加了這句,看看能不能解決linux下顯示亂碼的問題? title PHP 探針 v1.0 /title style type= text/css body{text-align:center;margin-top:20px;background-color:#a9b674;}#overview{width:700px;margin:0 auto;text-align:left;}a{text-decoration:underline;color:#992700;}.strong{color:#992700;}.basew{width:300px;} /style /head body div id= overview div id= copyright 版權信息 a href= hello.php?typ=baseinfo [基本信息] /a a href= hello.php?typ=superinfo [高級信息] /a ?phpif (function_exists( phpinfo )){ echo a href= hello.php?typ=phpinfo [phpinfo] /a }echo br / php探針v1.0 by MKDuse(blueidea-id) br / br / 此程序代碼,可免費使用;但不得用于商業用途;完全轉載或使用此代碼,請保留版權信息; br / 歡迎指正錯誤提建議,QQ:122712355 /div if (empty($_GET[ typ ])){ baseinfo();}else{switch ($_GET[ typ ]){case phpinfo :phpinfoview();break;case superinfo :superinfo();break;case baseinfo :baseinfo();break;default:baseinfo();}function getime() $t = gettimeofday(); return (float)($t[ sec ] + $t[ usec ]/1000000);function baseinfo(){echo h1 基本信息 /h1 $arr[]=array( Current PHP version: ,phpversion());$arr[]=array( Zend engine version: ,zend_version());$arr[]=array( 服務器版本 ,$_SERVER[ SERVER_SOFTWARE $arr[]=array( ip地址 ,$_SERVER[ REMOTE_HOST //ip$arr[]=array( 域名 ,$_SERVER[ HTTP_HOST $arr[]=array( 協議端口 ,$_SERVER[ SERVER_PROTOCOL ]. .$_SERVER[ SERVER_PORT $arr[]=array( 站點根目錄 ,$_SERVER[ PATH_TRANSLATED $arr[]=array( 服務器時間 ,date( Y年m月d日,H:i:s,D $arr[]=array( 當前用戶 ,get_current_user());$arr[]=array( 操作系統 ,php_uname( s ).php_uname( r ).php_uname( v $arr[]=array( include_path ,ini_get( include_path $arr[]=array( Server API ,php_sapi_name());$arr[]=array( error_reporting level ,ini_get( display_errors ));$arr[]=array( POST提交限制 ,ini_get( post_max_size $arr[]=array( upload_max_filesize ,ini_get( upload_max_filesize $arr[]=array( 腳本超時時間 ,ini_get( max_execution_time ). 秒 if (ini_get( safe_mode )==0){$arr[]=array( PHP安全模式(Safe_mode) , off }else{$arr[]=array( PHP安全模式(Safe_mode) , on }if (function_exists( memory_get_usage )){$arr[]=array( memory_get_usage ,ini_get( memory_get_usage }//$arr[]=array( 可用空間 ,intval(diskfreespace( / )/(1024 * 1024)). M echo table for($i=0;$i count($arr);$i++) $overview= tr td >以上就是php禁用函數設置及查看方法的介紹(附示例)的詳細內容,PHP教程
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。
新聞熱點
疑難解答