Created
December 16, 2015 16:54
-
-
Save realityking/27f2b3619032c4704a11 to your computer and use it in GitHub Desktop.
PHP Unified Symbol Table Example
This file contains 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 | |
class TestClass | |
{ | |
public $prop = 'hello'; | |
} | |
function test_function($a) | |
{ | |
return $a; | |
} |
This file contains 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 | |
namespace realityking; | |
require_once 'definitions.php'; | |
use TestClass; | |
$a = new TestClass; | |
var_dump(test_function($a)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment