https://github.com/valluminarias/php-nuller
A simple PHP Helper Class to nullify string and output desired string as placeholder
https://github.com/valluminarias/php-nuller
null nuller php php-helper php-nuller placeholder
Last synced: 3 months ago
JSON representation
A simple PHP Helper Class to nullify string and output desired string as placeholder
- Host: GitHub
- URL: https://github.com/valluminarias/php-nuller
- Owner: valluminarias
- Created: 2016-03-28T06:01:51.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-28T07:50:18.000Z (about 10 years ago)
- Last Synced: 2024-11-27T17:43:28.209Z (over 1 year ago)
- Topics: null, nuller, php, php-helper, php-nuller, placeholder
- Language: PHP
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# php-nuller
A simple PHP Helper Class to nullify string and output desired string as placeholder
# Install
```composer
composer require valluminarias/php-nuller
```
# How to Use
```php
require "vendor/autoload.php";
echo Nuller\Nuller::nullified('somestring', true, "Empty String");
```
### Result
```
Empty String
```