<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.svn.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.svn-cat.php',
    1 => 'svn_cat',
    2 => 'Returns the contents of a file in a repository',
  ),
  'up' => 
  array (
    0 => 'ref.svn.php',
    1 => 'SVN İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.svn-blame.php',
    1 => 'svn_blame',
  ),
  'next' => 
  array (
    0 => 'function.svn-checkout.php',
    1 => 'svn_checkout',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/svn/functions/svn-cat.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.svn-cat" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">svn_cat</h1>
  <p class="verinfo">(PECL svn &gt;= 0.1.0)</p><p class="refpurpose"><span class="refname">svn_cat</span> &mdash; <span class="dc-title">Returns the contents of a file in a repository</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.svn-cat-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>svn_cat</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$repos_url</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$revision_no</code><span class="initializer"> = ?</span></span>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <p class="simpara">
   Returns the contents of the URL <code class="parameter">repos_url</code> to
   a file in the repository, optionally at revision number
   <code class="parameter">revision_no</code>.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.svn-cat-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <dl>
   
    <dt><code class="parameter">repos_url</code></dt>
    <dd>
     <span class="simpara">
      String URL path to item in a repository.
     </span>
    </dd>
   
   
    <dt><code class="parameter">revision_no</code></dt>
    <dd>
     <span class="simpara">
      Integer revision number of item to retrieve, default is the HEAD
      revision.
     </span>
    </dd>
   
  </dl>

 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.svn-cat-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="simpara">
   Returns the string contents of the item from the repository on
   success, and <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on failure.
  </p>
 </div>


 

 

 <div class="refsect1 examples" id="refsect1-function.svn-cat-examples">
  <h3 class="title">Örnekler</h3>
  <div class="example" id="example-1">
   <p><strong>Örnek 1 Basic example</strong></p>
   <div class="example-contents"><p>
    This example retrieves the contents of a file at revision 28:
   </p></div>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$contents </span><span style="color: #007700">= </span><span style="color: #0000BB">svn_cat</span><span style="color: #007700">(</span><span style="color: #DD0000">'http://www.example.com/svnroot/calc/gui.c'</span><span style="color: #007700">, </span><span style="color: #0000BB">28</span><span style="color: #007700">)<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
   </div>

  </div>
 </div>


 <div class="refsect1 notes" id="refsect1-function.svn-cat-notes">
  <h3 class="title">Notlar</h3>
  <div class="warning"><strong class="warning">Uyarı</strong><p class="simpara">Bu işlev
<em>DENEYSELDİR</em>. Bu işlevin davranışı, ismi
ve belgeleri PHP&#039;nin sonraki sürümlerinde hiçbir duyuru yapılmaksızın
değiştirilebilir. Bu risk göze alınamayacaksa bu işlev
kullanılmamalıdır.</p></div>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.svn-cat-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <ul class="simplelist">
   <li><span class="function"><strong>svn_list()</strong></span></li>
   <li><a href="http://svnbook.red-bean.com/en/1.2/svn.ref.svn.c.cat.html" class="link external">&raquo;&nbsp;SVN documentation on svn cat</a></li>
  </ul>
 </div>


</div><?php manual_footer($setup); ?>