且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

检查是否“执行"被禁用

更新时间:2023-01-23 13:54:20

<?php
function exec_enabled() {
  $disabled = explode(',', ini_get('disable_functions'));
  return !in_array('exec', $disabled);
}
?>

根据Ziagl的评论修复了爆炸.

Fixed the explode as per Ziagl's comment.