php string 转int

php string 转int主要是通过强制类型转换来实现:

1、$foo = (int)$foo;

2、$foo =intval($foo);

 

你可能感兴趣的