我正在将一些 asp 编码转换为 php,从我在 php 中所做的事情来看,有没有更好的方法来简化事情,所以我不编写额外的代码行?
ASP
xFirstName = LCase(Replace(request.form("xFirstName"), "'", "''"))
xFirstName = UCase(Left(xFirstName,1))& Mid(xFirstName,2)
php
$xFirstName = strtolower(str_replace("'","''",$_POST["xFirstName"]));
$xFirstName = strtoupper(substr($xFirstName,0,1)).substr($xFirstName,1);