Ronald A. Richardson

Hi, and welcome to my website. I am a programmer, and start-up enthusiast. I love good code, and learning more about coding standards, design, algorithms, and implementation. I am currently the Lead Developer at FullSpeed Marketing and my job is awesome.

Recursive PHP Spintax Class 2.5 Posted on August 17th, 2011

Here is the completely true recursive renovated class that makes use of regex. Get 3.0 NOW! PHP Recursive Spintax Class 3.0 12345678910111213141516171819202122232425262728293031323334<?php class Spintax {        function spin($str, $test=false)    {       if(!$test){          do {             $str = $this->regex($str);       [...]

PHP Spintax Class v2 Posted on August 15th, 2011

Just a quick fix, it now returns the spun text as a string. An additional argument was added so that the user can choose what to return the spun text as either as an array or as a string, and is set to string by default. 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162<?php class Spintax {    function spin($string, $view=false, $returnAs="string") [...]