PHP code example of s25 / name-splitter

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

    

s25 / name-splitter example snippets



$splitter = new \S25\NameSplitter\Splitter();
$nameHolder = $splitter->split("Иванов Иван Иванович");
var_dump($nameHolder->getFirstName(), $nameHolder->getMiddleName(), $nameHolder->getLastName());