blob: 0fba20bb699b9bd153345e3429e30e9c1378c092 [file] [log] [blame]
Derek Allard466039a2008-02-11 12:46:24 +00001<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3<head>
4
Derek Jonesfd93d222008-05-06 15:18:50 +00005<title>Path Helper : CodeIgniter User Guide</title>
Derek Allard466039a2008-02-11 12:46:24 +00006
7<style type='text/css' media='all'>@import url('../userguide.css');</style>
8<link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
9
10<script type="text/javascript" src="../nav/nav.js"></script>
11<script type="text/javascript" src="../nav/prototype.lite.js"></script>
12<script type="text/javascript" src="../nav/moo.fx.js"></script>
13<script type="text/javascript" src="../nav/user_guide_menu.js"></script>
14
15<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
16<meta http-equiv='expires' content='-1' />
17<meta http-equiv= 'pragma' content='no-cache' />
18<meta name='robots' content='all' />
19<meta name='author' content='ExpressionEngine Dev Team' />
20<meta name='description' content='CodeIgniter User Guide' />
21</head>
22<body>
23
24<!-- START NAVIGATION -->
25<div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div>
26<div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle.jpg" width="153" height="44" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div>
27<div id="masthead">
28<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
29<tr>
Derek Jones6b7b11f2008-05-06 16:07:27 +000030<td><h1>CodeIgniter User Guide Version 1.6.2</h1></td>
Derek Allard466039a2008-02-11 12:46:24 +000031<td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td>
32</tr>
33</table>
34</div>
35<!-- END NAVIGATION -->
36
37
38<!-- START BREADCRUMB -->
39<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
40<tr>
41<td id="breadcrumb">
42<a href="http://codeigniter.com/">CodeIgniter Home</a> &nbsp;&#8250;&nbsp;
43<a href="../index.html">User Guide Home</a> &nbsp;&#8250;&nbsp;
44Path Helper
45</td>
46<td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide&nbsp; <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" />&nbsp;<input type="submit" class="submit" name="sa" value="Go" /></form></td>
47</tr>
48</table>
49<!-- END BREADCRUMB -->
50
51<br clear="all" />
52
53
54<!-- START CONTENT -->
55<div id="content">
56
57
58<h1>Path Helper</h1>
59
60<p>The Path Helper file contains functions that permits you to work with file paths on the server.</p>
61
62
63<h2>Loading this Helper</h2>
64
65<p>This helper is loaded using the following code:</p>
66<code>$this->load->helper('path');</code>
67
68<p>The following functions are available:</p>
69
70
71<h2>set_realpath()</h2>
72
73<p>Checks to see if the path exists. This function will return a server path without symbolic links or relative directory structures. An optional second argument will cause an error to be triggered if the path cannot be resolved.</p>
74
75<code>$directory = './../../etc/passwd';<br />
76echo set_realpath($directory);<br />
77// returns &quot;/etc/passwd&quot;<br />
78<br />
79$non_existent_directory = './../../path/not/found';<br />
80echo set_realpath($non_existent_directory, TRUE);<br />
81// returns &quot;/path/not/found&quot;<br />
82<br />
83echo set_realpath($non_existent_directory, FALSE);<br />
84// returns an <strong>error</strong>, as the path could not be resolved</code>
85<h2>&nbsp;</h2>
86</div>
87<!-- END CONTENT -->
88
89
90<div id="footer">
91<p>
92Previous Topic:&nbsp;&nbsp;<a href="html_helper.html"> HTML Helper</a>
93&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;
94<a href="#top">Top of Page</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;
95<a href="../index.html">User Guide Home</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;
96Next Topic:&nbsp;&nbsp;<a href="security_helper.html">Security Helper</a>
97</p>
Derek Jones07870432008-02-13 03:49:26 +000098<p><a href="http://codeigniter.com">CodeIgniter</a> &nbsp;&middot;&nbsp; Copyright &#169; 2006-2008 &nbsp;&middot;&nbsp; <a href="http://ellislab.com/">Ellislab, Inc.</a></p>
Derek Allard466039a2008-02-11 12:46:24 +000099</div>
100
101</body>
102</html>