2016-11-16 72 views
0

我在我的Symfony2項目中使用KnpPaginatorBundle。每次我請求結果的某些頁面,結果被返回到我的樣子:KnpPaginatorBundle以整數形式返回currentPageNumber

{ 
    "currentPageNumber": "2", 
    "numItemsPerPage": 5, 
    "items": [ ... 
    ] 
} 

正如你可以看到currentPageNumber是串在這裏。我如何將此屬性的類型更改爲整數?

回答

0

您可以使用standarttype在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