/*
* 这个函数用来将数组或对象重新组合成一个字符串。用在php代码中
* bug无法修补?slashes的问题
* @author bailing
*/
function ArrayToString( $obj )
{
// prt($obj);
$objType = gettype ( $obj );
if ( $objType == ' array ' ) {
$objstring = " array( " ;
foreach ( $obj as $objkey => $objv )
{
$objstring .= " " $objkey " => " ;
$vtype = gettype ( $objv );
if ( $vtype == ' integer ' ) {
$objstring .= " $objv, " ;
} else if ( $vtype == ' double ' ){
$objstring .= " $objv, " ;
} else if ( $vtype == ' string ' ){
$t = stripslashes ( $objv );
$objv = str_replace ( " " , " \t " , $t );
$objv = str_replace ( "
" , " \n " , $objv );
$objv = str_replace ( "
" , " \r " , $objv );
$objv = str_replace ( " "" , " \ "" , $objv );
$objstring .= " "" .$objv. " " , " ;
} else if ( $vtype == ' array ' ){
$objstring .= ArrayToString( $objv ) . " , " ;
} else if ( $vtype == ' object ' ){
$objstring .= ArrayToString( $objv ) . " , " ;
} else {
// 值为空等其他情况
//echo "[$vType]".$objv."=".$objkey;
$objstring .= " "" .$objv. " " , " ;
}
}
$objstring = substr ( $objstring , 0 ,- 1 );
return $objstring . " )
" ;
}
}
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号