Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 361 Bytes

php.md

File metadata and controls

14 lines (10 loc) · 361 Bytes

PHP

This looks more like a wiki that a style guide. I'll think about changing this up...

Inspecting variables

To get info on a variable use the following code:

<pre>
<? var_dump($variable); ?>
</pre>

var_dump(); will dump the variable and the <pre /> tag will format the code so that it's easier to read.