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 Foo { | |
public static function bar() { | |
echo "calling public static bar() in an ".(isset($this)?"object (".get_class($this).")":"static")." context. \n"; | |
} | |
public function baum() { | |
echo "calling public baum in an ".(isset($this)?"object (".get_class($this).")":"static")." context. \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
☹☺☻☃☠ | |
⚠⚡✆♿ | |
✈☎☏☂☔✉☄☽☾☕✇❤ | |
☯✝✞✟☨☦☭☮☪☫☬☩✠☧✡ | |
♈♉♊♋♌♍♎♏♐♑♒♓ | |
♀♂☿♁⚢⚣⚤⚥⚦⚧⚨⚩ | |
❁❀✿✽✾❃⚘☘ | |
♚♔♛♕♜♖♝♗♞♘♟♙ | |
♥♡♠♤♦♢♣♧ | |
✩★☆✪✫✬✭✮✯✰☼☸☉❂ |
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 | |
/** | |
* Date class | |
*/ | |
class Date { | |
/** | |
* Fuzzy date strings | |
* | |
* @var array |
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 Crypt { | |
/** | |
* The encryption cipher | |
* | |
* @var string | |
*/ | |
static public $cipher = MCRYPT_RIJNDAEL_256; |
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 Curl { | |
/** | |
* cURL request method | |
* | |
* @var string | |
*/ | |
protected $_method = 'GET'; |
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 Input { | |
/** | |
* Protocol (http or https) | |
* | |
* @return string | |
*/ | |
static public function protocol() { |
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 | |
/** | |
* TODO: Add support for namespaces... If we ever move to PHP 5.3+ | |
*/ | |
class Autoload { | |
/** | |
* Class directories | |
* |
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 Environment { | |
/** | |
* Current environment | |
* | |
* @var string | |
*/ | |
static protected $env; |