Source code of filesite.io.
https://filesite.io
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
799 B
34 lines
799 B
3 years ago
|
<style>
|
||
|
body{padding:10px;max-width:720px;margin:0 auto}
|
||
|
code{background-color:#EEE}
|
||
|
pre{padding:10px;background-color:#DDD}
|
||
|
.footer{text-align:center}
|
||
|
</style>
|
||
|
<h1>Welcome to FSC</h1>
|
||
|
<p>FSC is the core lib of <a href="https://filesite.io" target="_blank">filesite.io</a>, a small PHP Framework.</p>
|
||
|
<hr>
|
||
|
|
||
|
<h2>Download FSC</h2>
|
||
|
<p>
|
||
|
Source code:
|
||
|
<a href="https://git.filesite.io/filesite/fsc" target="_blank">https://git.filesite.io/filesite/fsc</a>,
|
||
|
download it via git:
|
||
|
</p>
|
||
|
<pre>
|
||
|
git clone "https://git.filesite.io/filesite/fsc.git"
|
||
|
</pre>
|
||
|
|
||
|
<h2>Sample code</h2>
|
||
|
|
||
|
<h3>App parameters</h3>
|
||
|
<code><?php print_r(FSC::$app); ?></code>
|
||
|
<pre>
|
||
|
<?php print_r(FSC::$app); ?>
|
||
|
</pre>
|
||
|
|
||
|
<h3>View parameters</h3>
|
||
|
<code><?php print_r($viewData); ?></code>
|
||
|
<pre>
|
||
|
<?php print_r($viewData); ?>
|
||
|
</pre>
|