We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6989a08 commit 2a3fd2fCopy full SHA for 2a3fd2f
src/types/array.rs
@@ -1,6 +1,16 @@
1
//! Represents an array in PHP. As all arrays in PHP are associative arrays,
2
//! they are represented by hash tables.
3
4
+use std::{
5
+ collections::HashMap,
6
+ convert::{TryFrom, TryInto},
7
+ ffi::CString,
8
+ fmt::{Debug, Display},
9
+ iter::FromIterator,
10
+ ptr,
11
+ str::FromStr,
12
+};
13
+
14
use crate::{
15
boxed::{ZBox, ZBoxable},
16
convert::{FromZval, IntoZval},
@@ -17,15 +27,6 @@ use crate::{
17
27
flags::DataType,
18
28
types::Zval,
19
29
};
20
-use std::{
21
- collections::HashMap,
22
- convert::{TryFrom, TryInto},
23
- ffi::CString,
24
- fmt::{Debug, Display},
25
- iter::FromIterator,
26
- ptr,
- str::FromStr,
-};
30
31
/// A PHP hashtable.
32
///
0 commit comments