Created
April 15, 2012 16:41
-
-
Save rskull/2393770 to your computer and use it in GitHub Desktop.
変数を展開する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* 変数を展開する関数 | |
* @author R.SkuLL | |
* 02 March 2012 | |
**/ | |
function d ($val) { | |
echo '<pre style="border:solid #F00 1px;backgrund:#FFF;color:#000;position:absolute">'; | |
print_r($val); | |
echo '</pre>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment