https://github.com/skybluesofa/hashtagify
Um...make hashtags from strings
https://github.com/skybluesofa/hashtagify
Last synced: 3 months ago
JSON representation
Um...make hashtags from strings
- Host: GitHub
- URL: https://github.com/skybluesofa/hashtagify
- Owner: skybluesofa
- License: mit
- Created: 2016-09-29T15:46:52.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-20T10:50:17.000Z (over 6 years ago)
- Last Synced: 2025-01-04T18:29:01.664Z (5 months ago)
- Language: PHP
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/skybluesofa/hashtagify) [](https://codeclimate.com/github/skybluesofa/hashtagify) [](https://codeclimate.com/github/skybluesofa/hashtagify/coverage) [](https://packagist.org/packages/skybluesofa/hashtagify) [](https://packagist.org/packages/skybluesofa/hashtagify) [](LICENSE)
# hashtagify
Um...make hashtags from strings## Usage:
You'll notice that these method names mirror the results that will be returned.To generate lowercase hashtag:
```php
```
To generate uppercase hashtag:
```php
```
To generate camelcase hashtag:
```php
```
To generate Pascal case hashtag:
```php
```
To generate hashtag using same case as what was entered:
```php
```
To generate snake case hashtag with all words uppercased:
```php
```
To generate snake case hashtag with all words lowercased:
```php
```
To generate snake case hashtag with all words uppercased, except the first, which is lowercased:
```php
```