An open API service indexing awesome lists of open source software.

https://github.com/baylorrae/php-split

The source to my A/B testing framework with PHP videos
https://github.com/baylorrae/php-split

Last synced: over 1 year ago
JSON representation

The source to my A/B testing framework with PHP videos

Awesome Lists containing this project

README

          

## Syntax

```php
name = $name;

// store each alternative into its own class
foreach( $alternative_names as $alternative_name ) {
array_push($this->alternatives, new Alternative($alternative_name, $name));
}
}

}

?>
```