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

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

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
```