我在 Symfony2 项目中使用 KnpPaginatorBundle。每次我请求特定页面的结果时,返回给我的结果如下所示:
{
"currentPageNumber": "2",
"numItemsPerPage": 5,
"items": [ ...
]
}
如您所见currentPageNumber
,这里是字符串。如何将此属性的类型更改为整数?
我在 Symfony2 项目中使用 KnpPaginatorBundle。每次我请求特定页面的结果时,返回给我的结果如下所示:
{
"currentPageNumber": "2",
"numItemsPerPage": 5,
"items": [ ...
]
}
如您所见currentPageNumber
,这里是字符串。如何将此属性的类型更改为整数?
您可以在 php 中使用标准类型转换(文档)
对于示例,您可以这样做:
$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