Display the drop-down list

Configuration of mb_strcut()

<?php
/**
 * PHP By Example
 *
 * @copyright 2014 Michel Corne 
 * @license   http://www.opensource.org/licenses/gpl-3.0.html GNU GPL v3
 */

require_once 'mb_convert_case.php';

/**
 * Function configuration
 *
 * @see docs/function-configuration.txt
 */

class mb_strcut extends mb_convert_case
{
    public 
$examples = [
        [
'español'42],
        [
'español'43'UTF-8'],
        [
'español'51'UTF-8'],
        [
'español'52'UTF-8'],
    ];

    public 
$synopsis 'string mb_strcut ( string $str , int $start [, int $length = NULL [, string $encoding = mb_internal_encoding() ]] )';
}