API15

Difference between revisions of "JBuffer/stream open"

From Joomla! Documentation

< API15:JBuffer
(New page: <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Description:JBuffer/stream_open}...)
 
m (removing red link to edit, no existant pages)
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JBuffer/stream_open|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JBuffer/stream_open}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 27: Line 26:
 
|   
 
|   
 
|-
 
|-
|  
+
| &$opened_path
 
|  
 
|  
 
|   
 
|   
Line 51: Line 50:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JBuffer/stream_open|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JBuffer/stream_open}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 66: Line 65:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 08:46, 12 May 2013

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

stream_open($path, $mode, $options, &$opened_path)
Parameter Name Default Value Description
$path
$mode
$options
&$opened_path

Defined in[edit]

libraries/joomla/utilities/buffer.php

Importing[edit]

jimport( 'joomla.utilities.buffer' );

Source Body[edit]

function stream_open($path, $mode, $options, & $opened_path)
{
        $url = parse_url($path);
        $this->name = $url["host"];
        $this->_buffers[$this->name] = null;
        $this->position = 0;

        return true;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />