In object:
$this->__toString(); OR echo $this;
In object, var_dump:
$this->__toString('var_dump');
Print out a different object:
$class->__toString('print_r', $object);
| <?php | |
| set_time_limit(-1); | |
| $primes = json_decode(file_get_contents("prime.json")); | |
| while (TRUE) | |
| { | |
| $i = $primes[count($primes) -1] + 1; | |
| $ip = $i + 999; |
| // In javascript, object properties that are not valid for the dot syntax can be defined with square brackets. | |
| // Similar to PHP: | |
| obj[' '] = 'foo'; | |
| // While there isn't a direct method to create a variable with a invalid name, | |
| // you can fake it using the document/window variable, or this | |
| this[' '] = 'bar'; |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title></title> | |
| </head> | |
| <body> | |
| <div id="clock"> | |
| <div id="Od" style="position:absolute;top:0px;left:0px"> | |
| <div style="position:relative"> | |
| </div> |
| <?php | |
| header('Content-type: text/html;charset=utf-8'); | |
| ?> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>My First Perl Script</title> | |
| </head> | |
| <body> | |
| <h1>It works!</h1> |
| <?php | |
| //Function for compressing the CSS as tightly as possible | |
| function compress($buffer) { | |
| //Remove CSS comments | |
| $buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer); | |
| //Remove tabs, spaces, newlines, etc. | |
| $buffer = preg_replace('`\s+`', ' ', $buffer); |
| <?php | |
| $files = array_merge(glob("*.jpg"), glob("*.jpeg"), glob("*.png"), glob("*.gif"), glob("*.bmp"), glob("*.swf")); | |
| sort($files); | |
| $num_files = count($files); | |
| if( ! isset($_GET['curr'])) | |
| { | |
| $curr_num = 0; |
| <?php | |
| /** | |
| * Magic constants | |
| */ | |
| // Current line number of the php file | |
| $current_line_number = __LINE__; | |
| // Current PHP file |
| <?php | |
| /** | |
| * JSObject | |
| * | |
| * Class for creating object-literal-like contstructs in PHP | |
| */ | |
| class JSObject { | |
| /** |
| <?php | |
| define('SAFE', 1); | |
| define('EXTREME', 2); | |
| define('EXTREME_SAVE_COMMENTS', 4); | |
| define('EXTREME_SAVE_PRE', 3); | |
| function minify($html, $level=2) | |
| { | |
| switch((int)$level) |