PHP code example of bvp / trimmer

1. Go to this page and download the library: Download bvp/trimmer 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/ */

    

bvp / trimmer example snippets




VP\Trimmer\Trimmer;

var_dump(Trimmer::trim(' trimmer '));                // string(7) "trimmer"
var_dump(Trimmer::trim(' @trimmer@ ', "\x20\x40"));  // string(7) "trimmer"

var_dump(Trimmer::ltrim(' trimmer '));               // string(8) "trimmer "
var_dump(Trimmer::ltrim(' @trimmer@ ', "\x20\x40")); // string(9) "trimmer@ "

var_dump(Trimmer::rtrim(' trimmer '));               // string(8) " trimmer"
var_dump(Trimmer::rtrim(' @trimmer@ ', "\x20\x40")); // string(9) " @trimmer"

var_dump(Trimmer::trim([' trimmerA ']));
/*------------------------------
array(1) {
  [0]=>string(8) "trimmerA"
}
------------------------------*/

var_dump(Trimmer::trim([' trimmerA ', [' trimmerB ']]));
/*------------------------------
array(2) {
  [0]=>string(8) "trimmerA"
  [1]=>array(1) {
    [0]=>string(8) "trimmerB"
  }
}
------------------------------*/

var_dump(Trimmer::trim([' trimmerA ', 1, 1.0, true, null]));
/*------------------------------
array(5) {
  [0]=>string(8) "trimmerA"
  [1]=>int(1)
  [2]=>float(1)
  [3]=>bool(true)
  [4]=>NULL
}
------------------------------*/

var_dump(Trimmer::trim([' trimmerA ', [' trimmerB ', 1, 1.0, true, null]]));
/*------------------------------
array(2) {
  [0]=>string(8) "trimmerA"
  [1]=>array(5) {
    [0]=>string(8) "trimmerB"
    [1]=>int(1)
    [2]=>float(1)
    [3]=>bool(true)
    [4]=>NULL
  }
}
------------------------------*/

// We will omit examples for ltrim and rtrim to keep the documentation concise.

$objectA = new class {
    private string $propertyA = ' trimmerA ';
    private string $propertyB = ' trimmerB '; // This property is not subject to trimming.
    public function getPropertyA(): string { return $this->propertyA; }
    public function setPropertyA(string $value): void { $this->propertyA = $value; }
    public function getPropertyB(): string { return $this->propertyB; }
};

var_dump(Trimmer::trim($objectA));
/*------------------------------
object(class@anonymous)#2 (2) {
  ["propertyA":"class@anonymous":private]=>string(8) "trimmerA"
  ["propertyB":"class@anonymous":private]=>string(10) " trimmerB "
}
------------------------------*/

$objectB = new class($objectA) {
    private string $propertyC = ' trimmerC ';
    private string $propertyD = ' trimmerD '; // This property is not subject to trimming.
    private object $objectA;
    public function __construct(object $objectA) {
        $this->objectA = $objectA;
    }
    public function getPropertyC(): string { return $this->propertyC; }
    public function setPropertyC(string $value): void { $this->propertyC = $value; }
    public function getPropertyD(): string { return $this->propertyD; }
    public function getObjectA(): object { return $this->objectA; }
};

var_dump(Trimmer::trim($objectB));
/*------------------------------
object(class@anonymous)#6 (3) {
  ["propertyC":"class@anonymous":private]=>string(8) "trimmerC"
  ["propertyD":"class@anonymous":private]=>string(10) " trimmerD "
  ["objectA":"class@anonymous":private]=>object(class@anonymous)#2 (2) {
    ["propertyA":"class@anonymous":private]=>string(8) "trimmerA"
    ["propertyB":"class@anonymous":private]=>string(10) " trimmerB "
  }
}
------------------------------*/

// We will omit examples for ltrim and rtrim to keep the documentation concise.