伙计们,我使用 Parse Post 接收我的用户名和密码但是当我的用户名包含在 Space 中时它不起作用。我的问题是如何在我的 php 代码中解析空格字符串?
<?php
function ParsePost( )
{
$username = '';
$password = '';
$post = file_get_contents( "php://input" );
$post = str_replace( "&", " ", $post );
sscanf( $post, "%s %s", $username, $password );
return array( 'user' => $username,
'pass' => $password
);
}
?>