Created
February 21, 2010 11:48
-
-
Save anonymous/310277 to your computer and use it in GitHub Desktop.
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 | |
require('sctwo.php'); | |
$sctwo = new SomeTestClass(); | |
$sctwo->vartwo = "Test var...."; | |
echo "Test: " . $sctwo->vartwo; | |
?> |
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 SomeTestClass | |
{ | |
var $varone; | |
} | |
?> |
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 SomeTestClass | |
{ | |
var $vartwo; | |
} | |
?> |
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 | |
require('scone.php'); | |
$scone = new SomeTestClass(); | |
$scone->varone = "One..."; | |
echo "Test: " . $scone->varone ; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment