General
Execute and test PHP functions that have no place in one of the other categories.
filter_var
Filters a variable with a specified filter.
floatval
返回变量 $var 的 float 数值。
Geo Distance
The distance function calculates the distance between 2 geo-coordinates. The distance is the distance on the crow flies, not by an itinerary.
The coordinates can be entered with . and , for the decimal place. Calculates the distance in kilometers (km).
intval
通过使用特定的进制转换(默认是十进制),返回变量 $var 的 integer 数值。
json_decode
接受一个 JSON 格式的字符串并且把它转换为 PHP 变量
json_encode
返回 $value 值的 JSON 形式
serialize
serialize() 返回字符串,此字符串包含了表示 $value 的字节流,可以存储于任何地方。
这有利于存储或传递 PHP 的值,同时不丢失其类型和结构。
想要将已序列化的字符串变回 PHP 的值,可使用 unserialize()。serialize() 可处理除了 resource 之外的任何类型。甚至可以 serialize() 那些包含了指向其自身引用的数组。你正 serialize() 的数组/对象中的引用也将被存储。
当序列化对象时,PHP 将试图在序列动作之前调用该对象的成员函数 __sleep()。这样就允许对象在被序列化之前做任何清除操作。类似的,当使用 unserialize() 恢复对象时, 将调用 __wakeup() 成员函数。
strval
返回 $var 的 string 值。 参见 string 文档获取更多关于字符串转换的信息。
unserialize
unserialize() 对单一的已序列化的变量进行操作,将其转换回 PHP 的值。