updating framework

This commit is contained in:
Nathan Adams
2014-04-27 21:05:19 -05:00
parent a7c962462d
commit 9eca035c3f
5 changed files with 61 additions and 10 deletions

View File

@@ -19,6 +19,9 @@ function vdump() {
foreach ($args as $arg)
var_dump($arg);
var_dump($_SERVER);
var_dump($_COOKIE);
$str = ob_get_contents();
ob_end_clean();

6
system/vendor/isvarset.php vendored Normal file
View File

@@ -0,0 +1,6 @@
<?php
function isvarset(&$var)
{
return (isset($var) && (!empty($var) || is_numeric($var))) ? true : false;
}