Source of: /manual/en/pdo.configuration.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/pdo.setup.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'pdo.configuration.php',
1 => 'Runtime Configuration',
),
'up' =>
array (
0 => 'pdo.setup.php',
1 => 'Installing/Configuring',
),
'prev' =>
array (
0 => 'pdo.installation.php',
1 => 'Installation',
),
'next' =>
array (
0 => 'pdo.resources.php',
1 => 'Resource Types',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="pdo.configuration" class="section">
<h2 class="title">Runtime Configuration</h2>
<p class="simpara">
The behaviour of these functions is affected by settings in <var class="filename">php.ini</var>.
</p>
<p class="para">
</p><table class="doctable table">
<caption><b>PDO Configuration Options</b></caption>
<thead valign="middle">
<tr valign="middle">
<th>Name</th>
<th>Default</th>
<th>Changeable</th>
<th>Changelog</th>
</tr>
</thead>
<tbody valign="middle" class="tbody">
<tr valign="middle">
<td align="left">pdo.dsn.*</td>
<td class="empty"> </td>
<td align="left"><var class="filename">php.ini</var> only</td>
<td class="empty"> </td>
</tr>
</tbody>
</table>
<p>
For further details and definitions of the
PHP_INI_* modes, see the <a href="configuration.changes.modes.php" class="xref">Where a configuration setting may be set</a>.
</p>
<p class="para">Here's a short explanation of
the configuration directives.</p>
<p class="para">
</p><dl>
<dt id="ini.pdo.dsn" class="varlistentry">
<span class="term">
<i><tt class="parameter">pdo.dsn.*</tt></i>
<a href="language.types.string.php" class="type string">string</a>
</span>
</dt><dd class="listitem">
<p class="para">
Defines DSN alias. See <a href="pdo.construct.php" class="function">PDO::__construct()</a> for
thorough explanation.
</p>
</dd>
</dl>
<p>
</p>
</div><?php manual_footer(); ?>