我在Symfony2项目中使用KnpPaginatorBundle。每当我要求某些结果页面时,结果都会返回给我:
{
"currentPageNumber": "2",
"numItemsPerPage": 5,
"items": [ ...
]
}
正如您所看到的,currentPageNumber
是字符串。如何将此属性的类型更改为整数?
答案 0 :(得分:0)
您可以在php(documentation)
中使用标准版演员对于样本,您可以这样做:
$intValue = (int) "123";
看看这个案子:
$stringValue = "123";
echo gettype($stringValue); // will be 'string' here
$intFromStringValue = (int) $stringValue;
echo gettype($intFromStringValue); // will be 'integer' here
// but be aware of this
echo (int) "Some words"; // will be integer but value will be 0, because type casting cannot get the number from string
echo (int) "200 and some words"; // integer 200
echo (int) "Some words and 300"; // integer 0