1
1
# html_build_attributes
2
2
3
- (PHP 5 >= 5.4, PHP 7, PHP 8)
4
- ` html_build_attributes ` — Generate a string of HTML attributes.
3
+ > PHP 5 >= 5.4, PHP 7, PHP 8
5
4
6
- ## Description
5
+ Generate a string of HTML attributes.
6
+
7
+ ## Installation
8
+
9
+ Using [ Composer] ( https://getcomposer.org/ ) :
7
10
8
- ``` php
9
- string html_build_attributes( array $attr [, callable $callback = null ] )
10
11
```
12
+ $ composer require mcaskill/php-html-build-attributes
13
+ ```
14
+
15
+ Alternatively, download ` Function.HTML-Build-Attributes.php ` from the package
16
+ source and save the file into your project path somewhere.
17
+
18
+ ## Upgrading
19
+
20
+ This package follows [ semantic versioning] ( https://semver.org/ ) , which means
21
+ breaking changes may occur between major releases.
11
22
12
- Generate a string of HTML attributes from the associative array provided.
23
+ ## API
13
24
14
- ## Parameters
25
+ ``` php
26
+ html_build_attributes( array|object $attr [, callable $callback = null ] ) : string
27
+ ```
28
+
29
+ ### Parameters
15
30
16
- - ` attr ` — Associative array, or object containing properties, representing
31
+ - ` attr ` — Associative array or object containing properties, representing
17
32
attribute names and values.
18
33
19
34
If ` attr ` is a non-iterable object, then only accessible non-static properties
@@ -39,30 +54,41 @@ Generate a string of HTML attributes from the associative array provided.
39
54
40
55
Any other value will be serialized using [ ` json_encode() ` ] [ function.json_encode ] .
41
56
42
- - ` callback ` — Callback function for escaping the values for the HTML attributes.
57
+ - ` callback ` — Callback function to escape the values for HTML attributes.
43
58
44
- If no sanitizer is provided, [ ` htmlspecialchars() ` ] [ function.htmlspecialchars ]
59
+ If no function is provided, [ ` htmlspecialchars() ` ] [ function.htmlspecialchars ]
45
60
is used;
46
61
47
62
If using WordPress, the [ ` esc_attr() ` ] [ wp.esc_attr ] function is used.
48
63
49
- ## Return Values
64
+ ### Return Values
50
65
51
66
Returns a string of HTML attributes or a empty string if ` attr ` is invalid or empty.
52
67
53
- ## Installation
68
+ ## Examples
54
69
55
- ### With Composer
70
+ ### Example # 1 : Simple usage of html_build_attributes()
56
71
57
- ```
58
- $ composer require mcaskill/php-html-build-attributes
72
+ ``` php
73
+ $attr = [
74
+ 'type' => 'file',
75
+ 'id' => 'avatar',
76
+ 'name' => 'avatar',
77
+ 'class' => [ 'form-control', 'form-control-sm' ],
78
+ 'multiple' => true,
79
+ 'disabled' => false,
80
+ 'accept' => implode(',', [ 'image/png', 'image/jpeg' ]),
81
+ 'data-max-files' => 3,
82
+ ];
83
+
84
+ echo '<input ' . html_build_attributes($attr) . ' >';
59
85
```
60
86
61
- ### Without Composer
87
+ The above example will output:
62
88
63
- Why are you not using [ composer ] ( http://getcomposer.org/ ) ?
64
- Download ` Function.HTML-Build-Attributes.php ` from the gist and save the file
65
- into your project path somewhere.
89
+ ``` html
90
+ < input type = " file " id = " avatar " name = " avatar " class = " form-control form-control-sm " multiple accept = " image/png,image/jpeg " data-max-files = " 3 " >
91
+ ```
66
92
67
93
[ class.closure ] : https://php.net/class.closure
68
94
[ function.htmlspecialchars ] : https://php.net/function.htmlspecialchars
0 commit comments