PHP code example of squirrelphp / strings-bundle
1. Go to this page and download the library: Download squirrelphp/strings-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
squirrelphp / strings-bundle example snippets
function (\Squirrel\Strings\StringFilterSelectInterface $selector) {
$string = "hello\n\nthanks a lot!\nbye";
$string = $selector->getFilter('ReplaceNewlinesWithSpaces')
->filter($string);
// Outputs "hello thanks a lot! bye"
echo $string;
}
use Squirrel\Strings\Annotation\StringFilter;
class NewsletterChangeAction
{
#[StringFilter("StreamlineInputNoNewlines","RemoveHTMLTags")]
public string $firstName = '';
#[StringFilter("RemoveNonAlphanumeric")]
public string $confirmToken = '';
}