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 | |
/* | |
| Set a 'urls' (note the plural) in your application.php config files. | |
| Example application/config/application.php for PRODUCTION: | |
| | |
| return array( | |
| 'urls' => array( | |
| 'http://productionsite.com', | |
| 'http://www.productionsite.com', |
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 | |
echo "<PRE>"; | |
$regex = "^\\\([a-zA-Z_]+){1}\\\([a-zA-Z_]+){1}\\\?([a-zA-Z]+)?_?([a-zA-Z]+)?_?([a-zA-Z]+)?_?([a-zA-Z]+)?$"; | |
echo "Regex: " . $regex . "\r\n"; | |
// Change Class name to test accordingly for whatever your class name is | |
if (isset($_GET['classname'])) { $className = $_GET['classname']; } else { $className = "\\Vendor\\Namespace\\Class"; } | |
echo "Class Name: " . $className . "\r\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
<?php | |
/** | |
* SplClassLoader implementation that implements the technical interoperability | |
* standards for PHP 5.3 namespaces and class names. | |
* | |
* http://groups.google.com/group/php-standards/web/final-proposal | |
* | |
* // Example which loads classes for the Doctrine Common package in the | |
* // Doctrine\Common namespace. |
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
75.126.19.144/28 | |
75.126.23.16/28 | |
173.193.185.248/29 | |
184.173.69.128/28 | |
50.22.39.192/28 | |
50.97.157.0/26 | |
75.126.59.16/28 | |
108.168.247.192/27 | |
173.193.171.136/29 | |
173.193.179.248/29 |
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 | |
$velocities = array("turtle", "donkey", "rabbit"); |
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 | |
$velocities = array("turtle", "donkey", "rabbit"); | |
$players = array( | |
'1' => array( | |
'name' => 'Foo', | |
'velocity' => $velocities[rand(0,2)]), | |
'2' => array( | |
'name' => 'Bar', | |
'velocity' => $velocities[rand(0,2)]), |
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 | |
$velocities = array("turtle", "donkey", "rabbit"); | |
$players = array( | |
'1' => array( | |
'name' => 'Foo', | |
'velocity' => $velocities[rand(0,2)]), | |
'2' => array( | |
'name' => 'Bar', | |
'velocity' => $velocities[rand(0,2)]), |
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 | |
$velocities = array("turtle", "donkey", "rabbit"); | |
$players = array( | |
'1' => array( | |
'name' => 'Foo', | |
'velocity' => $velocities[rand(0,2)]), | |
'actions' => array(), | |
'2' => array( | |
'name' => 'Bar', |
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 | |
$velocities = array("turtle", "donkey", "rabbit"); | |
$players = array( | |
'1' => array( | |
'name' => 'Foo', | |
'velocity' => $velocities[rand(0,2)], | |
'actions' => array(), | |
), | |
'2' => 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 | |
$velocities = array("turtle", "donkey", "rabbit"); | |
$players = array( | |
'1' => array( | |
'name' => 'Foo', | |
'velocity' => $velocities[rand(0,2)], | |
'actions' => array(), | |
), | |
'2' => array( |
OlderNewer