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 | |
| /** | |
| * Trait to get rid of naive getter/setter boilerplate | |
| */ | |
| trait GetSet | |
| { | |
| /** | |
| * Dynamically create getters/setters |
| # correction | |
| setopt correctall | |
| #prompt | |
| autoload -U promptinit | |
| promptinit | |
| prompt clint |
| #include <stdio.h> | |
| typedef struct { | |
| char *name; | |
| int age; | |
| int height; | |
| int weight; | |
| } Person; | |
| Person Person_create(char *name, int age, int height, int weight) |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| # !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading | |
| # slashes. | |
| # If your page resides at | |
| # http://www.example.com/mypage/test1 | |
| # then use | |
| # RewriteBase /mypage/test1/ | |
| RewriteBase / | |
| RewriteCond %{REQUEST_FILENAME} !-f |
| A simple class for exporting data from a database into a CSV file. | |
| If you want to directly output the CSV, simply call | |
| CSV::export($field_names, $data, $filename); | |
| Where: | |
| $field_names is an array, either associative, with the keys of the array being the column headers, or a traditional array, with the values of the array being the column headers of the csv in the order you want them. | |
| $data is either an array or object of arrays or objects containing your data in the same order as in the $field_names array |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>JS Prime Generator</title> | |
| </head> | |
| <body> | |
| <div id="res"></div> | |
| <button id="generate">Generate more primes!</button> | |
| <script type="text/javascript"> | |
| (function(){ |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Prime Number Generator</title> | |
| </head> | |
| <body onload="location.href='#bottom'"> | |
| <?php | |
| $start = microtime(TRUE); |
| document.getElementById('sub').addEventListener('click', transliterate, false); | |
| function transliterate() | |
| { | |
| var input = document.getElementById('in').value; | |
| var action = document.getElementById('action').value; | |
| var output; | |
| switch(action) | |
| { |
| <?php | |
| function do_curl($url, $options=array()) | |
| { | |
| $cookie = tempnam ("/tmp", "CURLCOOKIE"); | |
| $ch = curl_init($url); | |
| //Use the user's User Agent and Cookies | |
| $opts= array( | |
| CURLOPT_USERAGENT => $_SERVER['HTTP_USER_AGENT'], | |
| CURLOPT_COOKIEJAR => $cookie, |