Source of: /manual/en/function.pfsockopen.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.network.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'function.pfsockopen.php',
1 => 'pfsockopen',
),
'up' =>
array (
0 => 'ref.network.php',
1 => 'Network Functions',
),
'prev' =>
array (
0 => 'function.openlog.php',
1 => 'openlog',
),
'next' =>
array (
0 => 'function.setcookie.php',
1 => 'setcookie',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="function.pfsockopen" class="refentry">
<div class="refnamediv">
<h1 class="refname">pfsockopen</h1>
<p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">pfsockopen</span> — <span class="dc-title">Open persistent Internet or Unix domain socket connection</span></p>
</div>
<a name="function.pfsockopen.description"></a><div class="refsect1 description">
<h3 class="title">Description</h3>
<div class="methodsynopsis dc-description">
<span class="type">resource</span> <span class="methodname"><b>pfsockopen</b></span>
( <span class="methodparam"><span class="type">string</span> <tt class="parameter">$hostname</tt></span>
[, <span class="methodparam"><span class="type">int</span> <tt class="parameter">$port</tt><span class="initializer"> = -1</span></span>
[, <span class="methodparam"><span class="type">int</span> <tt class="parameter reference">&$errno</tt></span>
[, <span class="methodparam"><span class="type">string</span> <tt class="parameter reference">&$errstr</tt></span>
[, <span class="methodparam"><span class="type">float</span> <tt class="parameter">$timeout</tt><span class="initializer"> = ini_get("default_socket_timeout")</span></span>
]]]] )</div>
<p class="para rdfs-comment">
This function behaves exactly as <a href="function.fsockopen.php" class="function">fsockopen()</a> with the
difference that the connection is not closed after the script finishes.
It is the persistent version of <a href="function.fsockopen.php" class="function">fsockopen()</a>.
</p>
</div>
<a name="function.pfsockopen.parameters"></a><div class="refsect1 parameters">
<h3 class="title">Parameters</h3>
<p class="para">
For parameter information, see the <a href="function.fsockopen.php" class="function">fsockopen()</a>
documentation.
</p>
</div>
<a name="function.pfsockopen.seealso"></a><div class="refsect1 seealso">
<h3 class="title">See Also</h3>
<p class="para">
</p><ul class="simplelist">
<li class="member"><a href="function.fsockopen.php" class="function" rel="rdfs-seeAlso">fsockopen()</a> - Open Internet or Unix domain socket connection</li>
</ul><p>
</p>
</div>
</div><?php manual_footer(); ?>