显示下拉菜单

Configuration of iconv_strrpos() 本页面仅提供英文版本。

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

require_once 'iconv_strpos.php';

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

class iconv_strrpos extends iconv_strpos
{
    public 
$examples = [
        [
            
"hello world",
            
'o',
            
"UTF-8",
        ],
        [
            
"hello world",
            
'x',
            
"UTF-8",
        ],
    ];

    public 
$synopsis 'int iconv_strrpos ( string $haystack , string $needle [, string $charset = ini_get(&quot;iconv.internal_encoding&quot;) ] )';
}