by Example
Показать выпадающий список
Configuration of get_html_translation_table()
Эта страница доступна только на английском языке.
<?php
/**
* PHP By Example
*
* @copyright 2014 Michel Corne
* @license http://www.opensource.org/licenses/gpl-3.0.html GNU GPL v3
*/
require_once 'models/function_core.php';
/**
* Function configuration
*
* @see docs/function-configuration.txt
*/
class get_html_translation_table extends function_core
{
public $examples = [
['HTML_ENTITIES', 'ENT_QUOTES | ENT_HTML5']
];
public $options_getter = ['encoding' => 'mb_list_encodings'];
public $synopsis = 'array get_html_translation_table ([ int $table = HTML_SPECIALCHARS [, int $flags = ENT_COMPAT | ENT_HTML401 [, string $encoding = 'UTF-8' ]]] )';
public $test_not_validated = true;
}
Powered by
PHP 7.1.33 (0.01 s)
2014-2017 Michel Corne