30 lines
509 B
PHP
Executable File
30 lines
509 B
PHP
Executable File
<?php
|
|
|
|
namespace laytp\library;
|
|
|
|
/**
|
|
* 常用函数
|
|
* Class CommonFun
|
|
* @package laytp\library
|
|
*/
|
|
class CommonFun
|
|
{
|
|
/**
|
|
* 统一处理post数据
|
|
* @param $post
|
|
* @return mixed
|
|
*/
|
|
public static function filterPostData($post)
|
|
{
|
|
if (!$post) {
|
|
return [];
|
|
}
|
|
//处理数组
|
|
foreach ($post as $k => $v) {
|
|
if (is_array($v)) {
|
|
$post[$k] = implode(',', $v);
|
|
}
|
|
}
|
|
return $post;
|
|
}
|
|
} |