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 Oele { | |
function __construct() { | |
echo __METHOD__ . "\n"; | |
} | |
function __wakeup() { | |
echo __METHOD__ . "\n"; | |
} | |
} |
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
/** | |
* Double Opacity | |
*/ | |
body{background:green;} | |
#baz{ | |
opacity: 0.6; | |
} | |
#foo{ | |
height:150px; |