readonly()

最后更新于:2021-11-27 20:55:43

readonly( mixed$readonly, mixed$current=true, bool$echo=true)

Outputs the HTML readonly attribute.

参数

$readonly

(mixed) (Required) One of the values to compare

$current

(mixed) (Optional) (true) The other value to compare if not just true

Default value: true

$echo

(bool) (Optional) Whether to echo or just return the string

Default value: true

响应

(string) HTML attribute or empty string

源文件

文件: gc-includes/general-template.php

function readonly( $readonly, $current = true, $echo = true ) {
	return __checked_selected_helper( $readonly, $current, $echo, 'readonly' );
}