Source of: /manual/en/features.safe-mode.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/features.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'features.safe-mode.php',
1 => 'Safe Mode',
),
'up' =>
array (
0 => 'features.php',
1 => 'Features',
),
'prev' =>
array (
0 => 'features.persistent-connections.php',
1 => 'Persistent Database Connections',
),
'next' =>
array (
0 => 'ini.sect.safe-mode.php',
1 => 'Security and Safe Mode',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div>
<h1>Safe Mode</h1>
<h2>Table of Contents</h2><ul class="chunklist chunklist_chapter"><li><a href="ini.sect.safe-mode.php">Security and Safe Mode</a></li><li><a href="features.safe-mode.functions.php">Functions restricted/disabled by safe mode</a></li></ul>
<p class="para">
The PHP safe mode is an attempt to solve the shared-server security
problem. It is architecturally incorrect to try to solve this
problem at the PHP level, but since the alternatives at the web
server and OS levels aren't very realistic, many people,
especially ISP's, use safe mode for now.
</p>
<div class="warning"><b class="warning">Warning</b>
<p class="para">
Safe Mode is deprecated in PHP 5.3.0 and is removed in PHP 6.0.0.
</p>
</div>
</div>
<?php manual_footer(); ?>