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
- Host: GitHub
- URL: https://github.com/baylorrae/php-split
- Owner: BaylorRae
- Created: 2012-04-26T17:36:53.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2012-04-26T17:48:20.000Z (about 14 years ago)
- Last Synced: 2025-01-27T09:14:03.129Z (over 1 year ago)
- Language: PHP
- Homepage: http://www.youtube.com/playlist?list=PL9A92A503E362534A
- Size: 80.1 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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));
}
}
}
?>
```